2017-05-09 6 views
1

여기 예제와 비슷한 웹 맵을 작성하고 있습니다. example, 내 데이터가 있습니다.geojson 포인트를 html로 꾸미기

내 geojson 포인트가 예처럼 표시되지 않습니다, 여기이 어떻게 생겼는지 내 geojson 파일 points.geojson의 같은 :

<html> 
<head> 
    <title>A Leaflet map!</title> 
    <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css"/> 
    <script src="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.js"></script> 
    <script src="jquery-2.1.1.min.js"></script> 
    <style> 
     #map{ height: 100% } 
    </style> 
</head> 
<body> 

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

    <script> 

    // initialize the map 
    var map = L.map('map').setView([42.35, -71.09], 13); 

    // load a tile layer 
    L.tileLayer('http://tiles.mapc.org/basemap/{z}/{x}/{y}.png', 
    { 
     attribution: 'Tiles by <a href="http://mapc.org">MAPC</a>, Data by <a href="http://mass.gov/mgis">MassGIS</a>', 
     maxZoom: 100, 
     minZoom: 9 
    }).addTo(map); 

    // load GeoJSON from an external file 
    $.getJSON("point.geojson",function(data){ 
    // add GeoJSON layer to the map once the file is loaded 
     L.geoJson(data).addTo(map); 
    }); 

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

: 여기

{ 
"type": "FeatureCollection", 
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, 
"features": [ 
{ "type": "Feature", "properties": { "RENTAL_ID": 146057249, "CUSTOMER_I": 2256099, "LOCATION": "Boston", "VEHICLE_VI": "FHB 1675", "START_DATE": "2017\/03\/1 00:03:00", "END_DATE_L": "2017\/03\/1 00:10:00", "END_LATITU": 30.22478, "END_LONGIT": -97.72464, "DISTANCE": 5, "DURATION": 7, "DURATION_P": 0, "DURATION_D": 7, "SERVICE_DR": 0, "VEHICLE_TY": "HW 2.0" }, "geometry": { "type": "Point", "coordinates": [ 42.355672, -71.058712 ] } }, 
{ "type": "Feature", "properties": { "RENTAL_ID": 146057187, "CUSTOMER_I": 2435897, "LOCATION": "Boston", "VEHICLE_VI": "JHD 8492", "START_DATE": "2017\/03\/1 00:00:00", "END_DATE_L": "2017\/03\/1 00:19:00", "END_LATITU": 30.25766855, "END_LONGIT": -97.7383573, "DISTANCE": 13, "DURATION": 19, "DURATION_P": 0, "DURATION_D": 19, "SERVICE_DR": 0, "VEHICLE_TY": "B Class" }, "geometry": { "type": "Point", "coordinates": [ 42.361507, -71.090126 ] } } 
] 
} 

그리고 내가 쓴 내 코드는 내 포인트가 표시되지 않는 이유는 무엇입니까?

답변

1

귀하의 포인트는 표시되지만 예상 한 위치는 아닙니다.

GeoJSON 형식의 좌표는 [longitude, latitude]입니다. 그런 다음 전단은 내부적으로 [latitude, longitude]을 사용하므로이 순서를 역전합니다.

하지만 GeoJSON 규격 데이터를 계속 입력해야합니다.

+0

좌표 설명을 주셔서 감사합니다. 좌표를 역전하여 "GeoJSON 호환"데이터를 의미합니까? –

+0

예, 좌표를 반대로합니다. – ghybs

+0

감사합니다. 그게 문제 였고 크롬을 통해 실행, 그래서 브라우저를 Foxfire로 전환하고 좌표를 반대로, 다시 한 번 감사드립니다! –