with QGISリーフレットで公開したいgeojsonとしてポリゴンレイヤーをエクスポートしました。 https://gist.github.com/t-book/88806d12d7f05024b147715be82e6844リーフレットでgeojson featureCollectionを表示
これはI'veが試したものです::にGeoJSONは[SO文字制限によるexluded ]どのように見えるかです
var states = [{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::31468" } },
"features": [
{ "type": "Feature", "properties": ...
}];
:VARとして
ラップにGeoJSON新しいレイヤーとして追加されました:
L.geoJSON(states, {
style: function(feature) {
switch (feature.properties.party) {
case 'Euerbach': return {color: "#ff0000"};
case 'Werneck': return {color: "#0000ff"};
}
}
}).addTo(map);
Unfortuna何もレンダリングされません。このgeojson featureCollectionをマップに正しく追加するにはどうすればよいですか?
ありがとうございました! –