3

我是 web 地图和传单开发的初学者......我找到了一个简单但有用的代码,我想知道如何将下面 HTML 代码中的所有传单标记与 mylocal.png(或 .svg)交换。提前感谢您的任何反馈!祝大家有个美好的一天

<!doctype html>
<meta charset="utf-8">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.3/leaflet.css">
<style>
html, body, #map { height: 100%; margin: 0; }
</style>

<body>
<div id="map"></div>

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.3/leaflet.js"></script>
<script src="https://cdn.rawgit.com/tyrasd/osmtogeojson/2.2.5/osmtogeojson.js"></script>
<script>
var api = 'http://overpass-api.de/api/interpreter';
var query = 'area["place"="city"]["name"="Cluj-Napoca"];node[amenity=cafe](area);out;';
var map = L.map('map');
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
  attribution: '&copy; <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
}).addTo(map);
$.get(api, {data: query}, function(resp) {
  var geojson = osmtogeojson(resp);
  var layer = L.geoJson(geojson).addTo(map);
  map.fitBounds(layer.getBounds());
  });
</script>
4

2 回答 2

2

默认情况下,当使用L.GeoJSONGeoJSON 数据中的每个点时,都会变成默认的L.Marker. 您可以使用pointToLayer选项L.GeoJSON来返回使用您的图像的自L.Marker定义L.Icon

new L.GeoJSON(data {
    pointToLayer: function (feature, latlng) {
        return new L.Marker(latlng, {
            icon: new L.Icon({
                iconUrl: 'leaf-green.png',
                shadowUrl: 'leaf-shadow.png',
                iconSize:     [38, 95], // size of the icon
                shadowSize:   [50, 64], // size of the shadow
                iconAnchor:   [22, 94], // point of the icon which will correspond to marker's location
                shadowAnchor: [4, 62],  // the same for the shadow
                popupAnchor:  [-3, -76] // point from which the popup should open relative to the iconAnchor
            })
        });
    }
}).addTo(map);
于 2015-12-10T14:24:32.203 回答
0

尝试这个 :

var greenIcon = L.icon({
    iconUrl: 'leaf-green.png', // url to your custome icon


    iconSize:     [38, 95], // size of the icon
    shadowSize:   [50, 64], // size of the shadow
    iconAnchor:   [22, 94], // point of the icon which will correspond to marker's location
    shadowAnchor: [4, 62],  // the same for the shadow
    popupAnchor:  [-3, -76] // point from which the popup should open relative to the iconAnchor
});

然后把它放到地图初始化

L.marker([51.5, -0.09], {icon: greenIcon}).addTo(map);

而已。

于 2015-12-10T14:14:17.753 回答