我从Postgis数据库加载geojson并希望在我的地图上显示它。 绘制多边形后,我希望地图缩放到添加的多边形的范围。
我的数据加载正常并在地图上显示正确,但我无法弄清楚如何获取边界并将缩放更改为新添加的多边形。 我试图使用谷歌的部分代码 Data Layer: Drag and Drop GeoJSON example, 但是显示的地图放大了太平洋中靠近贝克群岛的某个地方,而多边形在卢森堡正确显示。
这里是我正在使用的代码:
window.addEventListener("load", func1);
function func1(){
//Load mapdata via geoJson
var parzelle = new google.maps.Data();
parzelle.loadGeoJson("./mapdata/get_parzelle_geojson.php<?php echo "?gid=".$_GET['gid'];?>");
// Set the stroke width, and fill color for each polygon
var featureStyle = {
fillColor: '#ADFF2F',
fillOpacity: 0.1,
strokeColor: '#ADFF2F',
strokeWeight: 1
}
parzelle.setStyle(featureStyle);
parzelle.setMap(map);
zoom(map);
}
function zoom(map) {
var bounds = new google.maps.LatLngBounds();
map.data.forEach(function(feature) {
processPoints(feature.getGeometry(), bounds.extend, bounds);
});
map.fitBounds(bounds);
}
function processPoints(geometry, callback, thisArg) {
if (geometry instanceof google.maps.LatLng) {
callback.call(thisArg, geometry);
} else if (geometry instanceof google.maps.Data.Point) {
callback.call(thisArg, geometry.get());
} else {
geometry.getArray().forEach(function(g) {
processPoints(g, callback, thisArg);
});
}
}
有没有办法让它发挥作用?似乎没有简单的方法来获取google.maps.data-layers
中的多边形边界。
答案 0 :(得分:28)
您发布的代码存在问题。您可以使用map.data访问数据层。
工作代码段。最初缩放到GeoJSON中的所有功能。点击时缩放到每个单独的多边形。
window.addEventListener("load", func1);
var map;
function func1() {
map = new google.maps.Map(document.getElementById('map-canvas'), {
zoom: 4,
center: {
lat: 0,
lng: 0
}
});
// Set the stroke width, and fill color for each polygon
var featureStyle = {
fillColor: '#ADFF2F',
fillOpacity: 0.1,
strokeColor: '#ADFF2F',
strokeWeight: 1
};
// zoom to show all the features
var bounds = new google.maps.LatLngBounds();
map.data.addListener('addfeature', function(e) {
processPoints(e.feature.getGeometry(), bounds.extend, bounds);
map.fitBounds(bounds);
});
// zoom to the clicked feature
map.data.addListener('click', function(e) {
var bounds = new google.maps.LatLngBounds();
processPoints(e.feature.getGeometry(), bounds.extend, bounds);
map.fitBounds(bounds);
});
//Load mapdata via geoJson
map.data.loadGeoJson('https://storage.googleapis.com/maps-devrel/google.json');
}
function processPoints(geometry, callback, thisArg) {
if (geometry instanceof google.maps.LatLng) {
callback.call(thisArg, geometry);
} else if (geometry instanceof google.maps.Data.Point) {
callback.call(thisArg, geometry.get());
} else {
geometry.getArray().forEach(function(g) {
processPoints(g, callback, thisArg);
});
}
}
html,
body,
#map-canvas {
height: 100%;
width: 100%;
margin: 0px;
padding: 0px
}
<script src="https://maps.googleapis.com/maps/api/js"></script>
<div id="map-canvas" style="border: 2px solid #3872ac;"></div>
答案 1 :(得分:16)
Maps API(至少从今天的V3.26开始)支持Data.Geometry.prototype.forEachLatLng()
,它抽象出各种Geometry
类型。
鉴于您已将geoJSON导入map.data
,可以轻松地将地图重新缩放以适应(&#34;适合边界&#34;):
var bounds = new google.maps.LatLngBounds();
map.data.forEach(function(feature){
feature.getGeometry().forEachLatLng(function(latlng){
bounds.extend(latlng);
});
});
map.fitBounds(bounds);
如果您的功能已因其他原因(例如设置样式)进行了迭代,则可以将此代码用于现有循环以提高效率。
答案 2 :(得分:1)
嗨,请尝试下面的代码,它完全正常,请用geojson文件路径替换网址.....谢谢&amp;回复
$.ajax({
url: url,
dataType: 'JSON',
success: function(data) {
var lat = {}, lng = {};
$(data.features).each(function(key,feature) {
$(feature.geometry.coordinates[0]).each(function(key,val) {
lng['max'] = (!lng['max'] || Math.abs(lng['max']) > Math.abs(val[0])) ? val[0] : lng['max'];
lng['min'] = (!lng['min'] || Math.abs(lng['min']) < Math.abs(val[0])) ? val[0] : lng['min'];
lat['max'] = (!lat['max'] || Math.abs(lat['max']) > Math.abs(val[1])) ? val[1] : lat['max'];
lat['min'] = (!lat['min'] || Math.abs(lat['min']) < Math.abs(val[1])) ? val[1] : lat['min'];
});
});
var bounds = new google.maps.LatLngBounds();
bounds.extend(new google.maps.LatLng(lat.min - 0.01, lng.min - 0.01));
bounds.extend(new google.maps.LatLng(lat.max - 0.01, lng.max - 0.01));
map.fitBounds(bounds);
map.setCenter(bounds.getCenter());
}
});