Googlemap control for Asp.Net MVC

Multiple Maps

About this example

The following sample show how to render multiple maps in a single view

     <div class="row">
        <div class="col-md-6" style="height: 300px">
            @(
                Html.GoogleMap()
                    .Name("map")
             )
        </div>
        <div class="col-md-6" style="height: 300px">
            @(
                Html.GoogleMap()
                    .Name("map1")
            )
        </div>
    </div>