这令我感到困惑。我正在使用Google Map的地理编码来查找位置。我正在尝试使用来自Google的示例here,但这对我不起作用。
http://maps.gstatic.com/intl/en_us/mapfiles/159e/maps2.api/main.js
第174行 var point = new GLatLng(,);
<script src="http://maps.google.com/maps?file=api&v=2&key='.$config['locations.gMaps.key'].'" type="text/javascript"></script>
<script src="http://www.google.com/uds/api?file=uds.js&v=1.0&key='.$config['locations.gMaps.key'].'" type="text/javascript"></script>
<script src="http://www.google.com/uds/solutions/localsearch/gmlocalsearch.js" type="text/javascript"></script>
<style type="text/css">
@import url("http://www.google.com/uds/css/gsearch.css");
@import url("http://www.google.com/uds/solutions/localsearch/gmlocalsearch.css");
</style>
<script type="text/javascript">
function addListener(element, baseName, handler) {
if (element.addEventListener)
element.addEventListener(baseName, handler, false);
else if (element.attachEvent)
element.attachEvent("on"+baseName,handler);
}
var map'.$num.';
function initialize'.$num.'()
{
if (GBrowserIsCompatible())
{
map'.$num.' = new GMap2(document.getElementById("google_map'.$num.'"),{mapTypes:[G_HYBRID_MAP]});
var point = new GLatLng('.$row->LocationLat.','.$row->LocationLon.');
map'.$num.'.setCenter(new GLatLng('.$row->LocationLat.','.$row->LocationLon.'),4);
var mapControl = new GMapTypeControl();
map'.$num.'.addControl(mapControl);
map'.$num.'.addControl(new GLargeMapControl());
map'.$num.'.addControl(new GOverviewMapControl());
map'.$num.'.enableDoubleClickZoom();
map'.$num.'.enableScrollWheelZoom();
var bounds = new GLatLngBounds;
var myIcon = new GIcon();
myIcon.image = "http://www.google.com/mapfiles/marker.png";
myIcon.iconAnchor = new GPoint((markerImage1.width/2),markerImage1.height);
bounds.extend(point);
setBounds(map'.$num.',bounds);
var address = "' . $address . '";
var geocoder = new GClientGeocoder();
showAddress(address, geocoder);
}
}
function showAddress(address, geocoder) {
geocoder.getLatLng(
address,
function(point) {
if (!point) {
alert(address + " not found");
} else {
map'.$num.'.setCenter(point, 13);
var marker = new GMarker(point);
map'.$num.'.addOverlay(marker);
marker.openInfoWindowHtml(address);
}
}
);
}
function setBounds(map'.$num.',bounds)
{
map'.$num.'.setZoom(15);
map'.$num.'.setCenter(bounds.getCenter());
}
function chargement()
{
markerImage1 = new Image();
markerImage1.src = "http://www.google.com/mapfiles/marker.png";
setTimeout("initialize'.$num.'()", 500);
}
addListener(window, "load", chargement);
</script>
我的代码是由PHP生成的,所以如果有'那意味着我正在打开或关闭持有JavaScript的字符串。
答案 0 :(得分:1)
也许我没有得到它,但
var point = new GLatLng(,);
无效javascript
应该是
var point = new GLatLng(param1, param2);
或
var point = new GLatLng();
或
var point = new GLatLng(null,null);
...取决于GLatLng构造函数是什么
答案 1 :(得分:0)
本声明:
var point = new GLatLng(,);
不正确,因为没有指定lat或lng编号。这是因为这句话:
var point = new GLatLng('.$row->LocationLat.','.$row->LocationLon.');
不正确。我会尝试类似的事情:
var point = new GLatLng(<?php echo $row->LocationLat . ',' . $row->LocationLon; ?>);
如果这不起作用,则$row->LocationLat
或$row->LocationLon
可能为空。
答案 2 :(得分:0)
问题1-函数showAddress()
未关闭。
问题2 - 您需要在函数之外定义地图对象,以便showAddress()
可以访问它。
问题3 - showAddress()
内对地图对象的引用不正确
答案 3 :(得分:0)
检查您打印到html + js中的php字符串是否存在于首位。 php生成htm并将其发送给用户,因为现在它的htm + javascript问题。 它看起来像一个javascript问题,但你真的生成一个错误的语法与PHP开始,因为你试图打印有问题的东西,它打印一个空的空间。 一定要小心,确保你打印的东西。