是否有内置支持或任何库可以从geoJSON
图层或google.maps.Data
或google.maps.Data.Feature
或甚至使用google.maps.Data.Geometry
导出Marker
数据,{ {1}}和Polyline
。我有这样的代码,例如:
Polygon
我想将这些数据作为geojson导出到服务器。像 var point=new google.maps.Data.Point(m.getPosition());
activeFeature.setGeometry(point);
console.log(activeFeature.getGeometry());
equiLayer.add(activeFeature);
中的toGeoJson
方法那样?
答案 0 :(得分:7)
样本函数:
google.maps.Map.prototype.getGeoJson=function(callback){
var geo={"type": "FeatureCollection","features": []},
fx=function(g,t){
var that =[],
arr,
f = {
MultiLineString :'LineString',
LineString :'Point',
MultiPolygon :'Polygon',
Polygon :'LinearRing',
LinearRing :'Point',
MultiPoint :'Point'
};
switch(t){
case 'Point':
g=(g.get)?g.get():g;
return([g.lng(),g.lat()]);
break;
default:
arr= g.getArray();
for(var i=0;i<arr.length;++i){
that.push(fx(arr[i],f[t]));
}
if( t=='LinearRing'
&&
that[0]!==that[that.length-1]){
that.push([that[0][0],that[0][1]]);
}
return that;
}
};
this.data.forEach(function(feature){
var _feature = {type:'Feature',properties:{}}
_id = feature.getId(),
_geometry = feature.getGeometry(),
_type =_geometry.getType(),
_coordinates = fx(_geometry,_type);
_feature.geometry={type:_type,coordinates:_coordinates};
if(typeof _id==='string'){
_feature.id=_id;
}
geo.features.push(_feature);
feature.forEachProperty(function(v,k){
_feature.properties[k]=v;
});
});
if(typeof callback==='function'){
callback(geo);
}
return geo;
}
该函数使用数据创建一个对象。您可以将回调作为参数传递,该参数将以对象作为参数执行。
采样呼叫:
//map is the google.maps.Map-instance
map.getGeoJson(function(o){console.log(o)});
演示:http://jsfiddle.net/doktormolle/5F88D/
注意:演示也会存储圈子,但GeoJSON不支持圈子。作为一种解决方法,它将圆圈存储为具有radius-property的POINT。
当具有radius-property的POINT将被加载到数据层时,demo会隐藏标记,并根据几何和radius-property创建一个圆。
<edit>
:现在有一种可用于geoJSON导出的内置方法:google.maps.Data.toGeoJson()
请参阅 Save Map Instance outside of Google Maps 以获取示例
答案 1 :(得分:2)
您好我想分享我从谷歌地图导出geojson数据到html textarea所做的工作。
这是我的html视图
<article id="article3" style="">
<div style="margin: 2px 0px 2px 0px;">
<button onclick= "exportData()">Save</button>
</div>
<textarea id="geojson-input" placeholder="..." class="" style="height: 97%; width: 100%"></textarea>
</article>
这是我的javascript
map.data.toGeoJson(function (data) {
document.querySelector('#geojson-input').innerHTML = JSON.stringify(data);
});
函数togeojson是map.data类的函数,它将从映射中获取所有数据并返回对象。要在我的textarea上显示该对象,我必须使用JSON.stringify(data)将该对象转换为字符串;
希望这会有所帮助!
答案 2 :(得分:0)
这些都不适合我。我想出了一种导出自定义多边形的方法,这种方法对其他形状也很有用。
这是关键的导出功能:
function getPathArray(polygon) {
return polygon.getPath().getArray().map(p => {
return { lat: p.lat(), lng: p.lng() }
})
}
以下是一个完整的例子:
function initMap() {
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 5,
center: { lat: 25.774, lng: -70.190 }, // bermuda triangle
});
const bermudaTriangle = new google.maps.Polygon({
paths: [
{ lat: 25.774, lng: -80.190 },
{ lat: 18.466, lng: -66.118 },
{ lat: 32.321, lng: -64.757 },
],
strokeColor: '#FF0000',
strokeOpacity: 0.8,
strokeWeight: 2,
fillColor: '#FF0000',
fillOpacity: 0.35,
editable: true,
draggable: false
});
bermudaTriangle.setMap(map);
bermudaTriangle.getPaths().forEach(function (path, index) {
google.maps.event.addListener(path, 'insert_at', function () {
var data = getPathArray(bermudaTriangle)
console.log(JSON.stringify(data))
})
google.maps.event.addListener(path, 'remove_at', function () {
var data = getPathArray(bermudaTriangle)
console.log(JSON.stringify(data))
})
google.maps.event.addListener(path, 'set_at', function () {
var data = getPathArray(bermudaTriangle)
console.log(JSON.stringify(data))
})
})
google.maps.event.addListener(bermudaTriangle, 'dragend', function () {
console.log("dragged")
})
}
function getPathArray(polygon) {
return polygon.getPath().getArray().map(p => {
return { lat: p.lat(), lng: p.lng() }
})
}
然后使用打印到控制台的json并导入
bermudaTriangle.setPath(JSON.parse(myJson))