2017-05-16 12 views
0

Mapbox JS에는 광범위한 예제 라이브러리 here이 있지만 표시되지 않는 것은 Mapbox Studio에서 벡터 타일을로드하는 방법에 대한 문서입니다.벡터 타일을 mapbox.js에 추가

업그레이드 된 Mapbox GL JS에서이 내용은 documentation에 명확하게 설명되어 있습니다. URL이 mapidsource-layer을 포함

map.addLayer({ 
    "id": "terrain-data", 
    "type": "line", 
    "source": { 
     type: 'vector', 
     url: 'mapbox://mapbox.mapbox-terrain-v2' 
    }, 
    "source-layer": "contour", 
    "layout": { 
     "line-join": "round", 
     "line-cap": "round" 
    }, 
    "paint": { 
     "line-color": "#ff69b4", 
     "line-width": 1 
    } 
}); 

레이어의 이름입니다. 그래서 mapid = ABCD1234 경우, 내 이름은 testUser, 그리고 내 벡터 레이어 이름은 내가 작성합니다 testLayer입니다 :

"source": { 
    type: 'vector', 
    url: 'mapbox://testUser.abcd1234' 
}, 
"source-layer": "testLayer", 

이, Mapbox GL JS 완벽하게 작동하지만 해당 예에서로드 mapbox 벡터 타일 무엇을 것 Mapbox JS의 Mapbox Studio?

답변