Googlemap control for Asp.Net MVC

Simple Marker

About this example

This sample show a simple marker.

Note if no point (latitude and longitude) specified marker is placed in the center of the map

@(
    Html.Googlemap()
        .Name("map")
        .Markers(m => m.Add().Title("Hello World!")) 
 )