我正在使用Gmap3 http://gmap3.net/来计算产品库存商的客户位置。我可以使用php从mysql db ok中提取供应商的地址,但我不知道如何使用第一部分中的地理编码地址将地图置于该位置的中心位置。
地理编码标记在地图上显示得很好,但我不知道如何将地图置于其中心。
我尝试的是中心:latLng,但这似乎不起作用。
<script type="text/javascript">
$(function(){
$('#test1').gmap3({
getlatlng:{
address: "Paris, France",
callback: function(results){
if ( !results ) return;
$(this).gmap3({
marker:{
latLng:results[0].geometry.location,
}
});
}
},
map:{
options:{
center:[52.9045147,-2.1685132],
zoom: 6
}
},
marker:{
values:[
<?php
include '../connect.php';
$sql = <<<SQL
SELECT * FROM `suppliers`
SQL;
if(!$result = $db->query($sql)){ die('There was an error running the query [' . $db->error . ']');}
while($row = $result->fetch_assoc()){
echo '{address:"'.$row['address'].'", data:"'.$row['name'].'"},';
}
?>
// {address:"66000 Perpignan, France", data:"Perpignan ! <br> GO USAP !", options:{icon: "http://maps.google.com/mapfiles/marker_green.png"}}
],
options:{
draggable: false
},
events:{
mouseover: function(marker, event, context){
var map = $(this).gmap3("get"),
infowindow = $(this).gmap3({get:{name:"infowindow"}});
if (infowindow){
infowindow.open(map, marker);
infowindow.setContent(context.data);
} else {
$(this).gmap3({
infowindow:{
anchor:marker,
options:{content: context.data}
}
});
}
},
mouseout: function(){
var infowindow = $(this).gmap3({get:{name:"infowindow"}});
if (infowindow){
infowindow.close();
}
}
}
}
});
});
</script>
答案 0 :(得分:0)
这似乎有效:
$(function(){
$('#test1').gmap3({
getlatlng:{
address: "Paris, France",
callback: function(results){
if ( !results ) return;
$(this).gmap3({
map:{
options:{
center:results[0].geometry.location,
zoom: 6
}
},
marker:{
latLng:results[0].geometry.location,
}
});
}
},
marker:{
values:[
<?php
include '../connect.php';
$sql = <<<SQL
SELECT * FROM `suppliers`
SQL;
if(!$result = $db->query($sql)){ die('There was an error running the query [' . $db->error . ']');}
while($row = $result->fetch_assoc()){
echo '{address:"'.$row['address'].'", data:"'.$row['name'].'"},';
}
?>
// {address:"66000 Perpignan, France", data:"Perpignan ! <br> GO USAP !", options:{icon: "http://maps.google.com/mapfiles/marker_green.png"}}
],
options:{
draggable: false
},
events:{
mouseover: function(marker, event, context){
var map = $(this).gmap3("get"),
infowindow = $(this).gmap3({get:{name:"infowindow"}});
if (infowindow){
infowindow.open(map, marker);
infowindow.setContent(context.data);
} else {
$(this).gmap3({
infowindow:{
anchor:marker,
options:{content: context.data}
}
});
}
},
mouseout: function(){
var infowindow = $(this).gmap3({get:{name:"infowindow"}});
if (infowindow){
infowindow.close();
}
}
}
}
});
});