Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to load GeoJSON data

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly explains "how to load GeoJSON data". The content in the article is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn "how to load GeoJSON data".

Leaflet is an open source JavaScript class library for interactive maps on the desktop and mobile. The size of the JS library is about 38k after compression, and it has all the map functions that developers need.

Leaflet maintains the design idea of simplicity, performance and practicality. It works efficiently on all major desktop and mobile platforms, and can extend plug-ins. It has a beautiful, easy-to-use and well-documented API, and a simple, easy-to-read source code.

Leaflet can realize data display and pop-up data information management by loading GeoJSON data, loading point, line and surface data in batches, and transforming them into corresponding feature objects.

The following is illustrated by an GeoJSON load point data that is displayed as an icon:

/ / iterate through each feature, bind pop-up bubbles and prompt messages

Function onEachFeature (feature, layer) {

If (feature.properties & & feature.properties.name) {

Layer.bindTooltip (feature.properties.name)

Layer.bindPopup (feature.properties.address)

}

}

/ / set icon style

Var baseballIcon = L.icon ({

IconUrl: 'img/leaflet/school_icon.png'

IconSize: [24, 27]

IconAnchor: [12, 27]

PopupAnchor: [0,-28]

TooltipAnchor: [0,-20]

});

/ / load json data

$.getJSON ('sampledata/ta_school_point.json', function (data) {

/ / create a layer through geojson

Schoollayer =

L.geoJSON (data, {

OnEachFeature: onEachFeature

/ / cycle to set icon style

PointToLayer: function (feature, latlng) {

Return L.marker (latlng, {

Icon: baseballIcon

});

}

});

/ / add to the map and locate

Schoollayer.addTo (map)

Map.fitBounds (schoollayer.getBounds ())

});

Thank you for your reading, the above is the content of "how to load GeoJSON data", after the study of this article, I believe you have a deeper understanding of how to load GeoJSON data, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report