我们在一年前完成了此脚本,并且未显示标记图标。我知道它的gmap 2,现在应该是gmap3 ..但是对于我的生活无法转换。请帮助,或帮助我们解决此问题。
脚本是:
var userLocation = '<?php echo $homelocation; ?>';
if (GBrowserIsCompatible()) {
var geocoder = new GClientGeocoder();
geocoder.getLocations(userLocation, function (locations) {
if (locations.Placemark)
{
var north = locations.Placemark[0].ExtendedData.LatLonBox.north;
var south = locations.Placemark[0].ExtendedData.LatLonBox.south;
var east = locations.Placemark[0].ExtendedData.LatLonBox.east;
var west = locations.Placemark[0].ExtendedData.LatLonBox.west;
var bounds = new GLatLngBounds(new GLatLng(south, west),
new GLatLng(north, east));
var map = new GMap2(document.getElementById("map_canvas"));
var Icon = new GIcon();
Icon.image = "images/422marker.png";
Icon.iconSize = new GSize(33, 50);
map.setCenter(bounds.getCenter(), map.getBoundsZoomLevel(bounds));
map.addOverlay(new GMarker(bounds.getCenter()), Icon);
}
});
}
答案 0 :(得分:0)
&v=2
是否会出现在从Google加载API的加载脚本网址中?如果没有,请添加它,脚本可能会重新开始工作。
当然,您仍然希望花点时间升级到v3。