2017-03-21 8 views
1

私は各国ごとに異なるレイヤーを持つマップボックスを使って世界の地図を作ろうとしています。国のレイヤーをクリックすると、その国のウェブサイトの特定のURLにリンクします。私はこれを行うために( 'クリック')を使用する必要があることを知っていますが、方法を理解することはできません。この地図では、チリのレイヤー(これはベクトルタイルになります)があるので、チリについての外部WebページへのURLにリンクするレイヤー 'chile'のクリックが必要です。私はそれを数日間遊んでいて何も持っていません。私はごくわずかなコード体験を持っていますが、助けていただければ幸いです。概念的に国の特定のレイヤーをクリックするとURLにリンクする世界地図

<html> 
<head> 
<meta charset='utf-8' /> 
<title>Points on a map</title> 
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-  scalable=no' /> 
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.31.0/mapbox-gl.js'></script> 
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.31.0/mapbox-gl.css' rel='stylesheet' /> 
<style> 
    body { 
    margin: 0; 
    padding: 0; 
    } 

    #map { 
    position: absolute; 
    top: 0; 
    bottom: 0; 
    width: 100%; 
    } 
</style> 
</head> 
<body> 
<div id='map'></div> 

<script> 
mapboxgl.accessToken = 'pk.eyJ1IjoidHJla3dpdGh0YXlsb3IiLCJhIjoiY2owZTB0OWkyMDE2bDMycWw1N3J2OHZpZyJ9.jDMCcXBCjsbQ-Vh973LQZA'; // replace this with your access token 
var map = new mapboxgl.Map({ 
    container: 'map', 
    style: 'mapbox://styles/trekwithtaylor/cj0h4jjwe003w2sultexx0ds4' 
}); 

</script> 
</body> 
</html> 

答えて

2

、あなたは、click eventをリッスンユーザーがクリックしたどの国把握するMap#queryRenderedFeaturesを使用して、関連するWebページを開いている何をする必要があるか:これは私がMapboxから持っているもののベースでありますその国と

「ホバー効果を作成する」をクリックイベントにも対応させるためのデモを作成しました。これがあなたに役立つことを願っています!

<!DOCTYPE html> 
 
<html> 
 
<head> 
 
    <meta charset='utf-8' /> 
 
    <title></title> 
 
    <meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' /> 
 
    <script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.34.0/mapbox-gl.js'></script> 
 
    <link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.34.0/mapbox-gl.css' rel='stylesheet' /> 
 
    <style> 
 
     body { margin:0; padding:0; } 
 
     #map { position:absolute; top:0; bottom:0; width:100%; } 
 
    </style> 
 
</head> 
 
<body> 
 

 
<div id='map'></div> 
 
<script> 
 
mapboxgl.accessToken = 'pk.eyJ1IjoibHVjYXN3b2oiLCJhIjoiY2l5Nmg4cWU1MDA0ejMzcDJtNHJmZzJkcyJ9.WhcEdTYQH6sSw2pm0RSP9Q'; 
 
var map = new mapboxgl.Map({ 
 
    container: 'map', 
 
    style: 'mapbox://styles/mapbox/streets-v9', 
 
    center: [-100.486052, 37.830348], 
 
    zoom: 2 
 
}); 
 

 
map.on('load', function() { 
 
    map.addSource("states", { 
 
     "type": "geojson", 
 
     "data": "https://d2ad6b4ur7yvpq.cloudfront.net/naturalearth-3.3.0/ne_110m_admin_1_states_provinces.geojson" 
 
    }); 
 

 
    map.addLayer({ 
 
     "id": "state-fills", 
 
     "type": "fill", 
 
     "source": "states", 
 
     "layout": {}, 
 
     "paint": { 
 
      "fill-color": "#627BC1", 
 
      "fill-opacity": 0.5 
 
     } 
 
    }); 
 

 
    map.addLayer({ 
 
     "id": "state-borders", 
 
     "type": "line", 
 
     "source": "states", 
 
     "layout": {}, 
 
     "paint": { 
 
      "line-color": "#627BC1", 
 
      "line-width": 2 
 
     } 
 
    }); 
 

 
    map.addLayer({ 
 
     "id": "state-fills-hover", 
 
     "type": "fill", 
 
     "source": "states", 
 
     "layout": {}, 
 
     "paint": { 
 
      "fill-color": "#627BC1", 
 
      "fill-opacity": 1 
 
     }, 
 
     "filter": ["==", "name", ""] 
 
    }); 
 

 
    // When the user moves their mouse over the page, we look for features 
 
    // at the mouse position (e.point) and within the states layer (states-fill). 
 
    // If a feature is found, then we'll update the filter in the state-fills-hover 
 
    // layer to only show that state, thus making a hover effect. 
 
    map.on("mousemove", function(e) { 
 
     var features = map.queryRenderedFeatures(e.point, { layers: ["state-fills"] }); 
 
     if (features.length) { 
 
      map.getCanvas().style.cursor = 'pointer'; 
 
      map.setFilter("state-fills-hover", ["==", "name", features[0].properties.name]); 
 
     } else { 
 
      map.setFilter("state-fills-hover", ["==", "name", ""]); 
 
      map.getCanvas().style.cursor = ''; 
 
     } 
 
    }); 
 

 
    // Reset the state-fills-hover layer's filter when the mouse leaves the map 
 
    map.on("mouseout", function() { 
 
     map.getCanvas().style.cursor = 'auto'; 
 
     map.setFilter("state-fills-hover", ["==", "name", ""]); 
 
    }); 
 
    
 
    map.on("click", function(e) { 
 
     var features = map.queryRenderedFeatures(e.point, { layers: ["state-fills"] }); 
 
     if (features.length) { 
 
      window.location = 'https://en.wikipedia.org/wiki/' + features[0].properties.name 
 
     } 
 
    }); 
 
}); 
 
</script> 
 

 
</body> 
 
</html>

関連する問題