public void MapSetCenterZoom(LatLng center, Int32 zoom, Map mapJsObj) { HtmlPage.Window.Eval(mapJsObj.Id + ".setCenter(new GLatLng(" + center.ToString() + ")," + zoom.ToString() + ");"); }
public void ShapeMarkerSetPoint(MapShapes shape, LatLng point) { HtmlPage.Window.Eval(shape.Id + ".setLatLng(new GLatLng(" + point.ToString() + "));"); }