2
私はカスタムマーカー画像と検索フィールドを持つマップボックスマップを持っています - 検索文字列とマーカーのfeature.propertiesの完全一致があるとき - 地図はマッチしたマーカーの座標にズームイン - このケースでは、私は2つのことを達成するために失敗しました:マップボックスの検索、開いているポップアップ/ツールヒント、カスタムマーカー画像の変更
- 開い表示されるマッチしたマーカーのポップアップ/ツールチップ。 および
- マッチしたマーカーのカスタムイメージを変更するには
ご協力いただきありがとうございます!
L.mapbox.accessToken = 'pk.eyJ1IjoibmFkaiIsImEiOiJjaW43a2hyOXYwMDJrd29semd6bmZha2JuIn0.nE1hjNjGG2rlxm_oMrysyg';
var map = L.mapbox.map('map', 'mapbox.streets')
.setView([38.13455657705411, -94.5703125], 4);
var myLayer = L.mapbox.featureLayer().addTo(map);
var geojson = {
type: 'FeatureCollection',
features: [{
type: 'Feature',
properties: {
id: 1,
'title': 'Washington, D.C.',
"cityName": "washington",
"icon": {
"iconUrl": "https://www.mapbox.com/mapbox.js/assets/images/astronaut2.png",
"iconSize": [50, 50],
"iconAnchor": [25, 25],
"popupAnchor": [0, -25],
"className": "dot"
}
},
geometry: {
type: 'Point',
coordinates: [-77.03201, 38.90065]
}
}, {
type: 'Feature',
properties: {
id: 2,
'title': 'Chicago, M',
"cityName": "chicago",
"icon": {
"iconUrl": "https://www.mapbox.com/mapbox.js/assets/images/astronaut2.png",
"iconSize": [50, 50],
"iconAnchor": [25, 25],
"popupAnchor": [0, -25],
"className": "dot"
}
},
geometry: {
type: 'Point',
coordinates: [-87.71484375, 41.80407814427234]
}
},
{
type: 'Feature',
properties: {
id: 3,
'title': 'Dallas, T',
"cityName": "dallas",
"icon": {
"iconUrl": "https://www.mapbox.com/mapbox.js/assets/images/astronaut2.png",
"iconSize": [50, 50],
"iconAnchor": [25, 25],
"popupAnchor": [0, -25],
"className": "dot"
}
},
geometry: {
type: 'Point',
coordinates: [-96.85546875, 32.80574473290688]
}
}
]
};
var myLayer = L.mapbox.featureLayer().addTo(map);
myLayer.on('layeradd', function(e) {
var marker = e.layer,
feature = marker.feature;
marker.setIcon(L.icon(feature.properties.icon));
});
myLayer.setGeoJSON(geojson);
// Search by city name \t
$('#searchByName').keyup(cityMapSearch);
function cityMapSearch() {
var searchString = $('#searchByName').val().toLowerCase();
myLayer.setFilter(showCity);
function showCity(feature) {
if (feature.properties.cityName == searchString) {
map.setView([feature.geometry.coordinates[1], feature.geometry.coordinates[0]], 17);
} else {
return feature.properties.cityName
.toLowerCase()
.indexOf(searchString) !== -1;
}
return true;
}
}
#map {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
}
.search-field {
position: absolute;
right: 0;
bottom: 15px;
width: 250px;
height: 30px;
font-size: 12px;
text-align: left;
padding: 5px;
z-index: 100;
}
<link href="https://api.mapbox.com/mapbox.js/v2.4.0/mapbox.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://api.mapbox.com/mapbox.js/v2.4.0/mapbox.js"></script>
<div id='map'></div>
<input type="text" id="searchByName" class="search-field" placeholder="Washington, Chicago or Dallas">