function MapCreate(map) { if (map == null) map = "Map"; if (typeof(map) == "string") map = new GMap2(document.getElementById(map)); map.setUIToDefault(); map.setMapType(G_HYBRID_MAP); var styleCurrent = new GIcon(G_DEFAULT_ICON,"https://gmaps-samples.googlecode.com/svn/trunk/markers/red/blank.png"); var styleStatus = new GIcon(G_DEFAULT_ICON,"https://gmaps-samples.googlecode.com/svn/trunk/markers/green/blank.png"); var stylePath = "#14FF00"; var point; point = new GMarker(new GLatLng(49.792111,14.866226),{icon: styleCurrent}); point.bindInfoWindowHtml("Doma

3/11/2014 1:00:00 PM"); map.addOverlay(point); map.setCenter(new GLatLng(49.792111,14.866226),15);map.addOverlay(new GPolyline([new GLatLng(49.792111,14.866226)],stylePath,5,1)); return map; }