zoukankan      html  css  js  c++  java
  • leaflet入门(二)GeoJson

    GeoJson格式数据的形式

    Using GeoJSON with Leaflet

    GeoJSON is becoming a very popular data format among many GIS technologies and services — it's simple, lightweight, straightforward, and Leaflet is quite good at handling it. In this example, you'll learn how to create and interact with map vectors created from GeoJSON objects.

    译:通过Leaflet使用GeoJson。

    GeoJSON是一种在GIS工程和服务中变的很流行的数据格式,简单,轻量级,明确,并且Leaflet能很好的处理它。在这个例子中,你会学会如何通过GeoJSON对象创建地图矢量并与之交互。

    单个要素数据:

    var geojsonFeature = {
    "type": "Feature",          //要素类型
    "properties": {                //属性
        "name": "Coors Field",
        "amenity": "Baseball Stadium",
        "popupContent": "This is where the Rockies play!"
    },
    "geometry": {                //要素地理坐标
        "type": "Point", //元素类型
        "coordinates": [-104.99404, 39.75621]  //坐标
    }
    };

    要素集合的定义形式:

    var geojsonFeature={
        "type": "FeatureCollection",        //要素集合
        "features": [
            {
                "type": "Feature",        //要素类型
                "id": "6328",
                "properties": {            //属性
                    "flag":'100',
                    "name": "海西蒙古族藏族自治州",
                    "cp": [
                        94.9768,
                        37.1118
                    ],
                    "childNum": 7
                },
                "geometry": {            //要素地理坐标
                    "type": "MultiPolygon",
                    "coordinates": [
                        [
                        .........
  • 相关阅读:
    java线程的理解
    linux常用命令
    排序算法-(2)-选择排序
    git查看某个文件修改历史
    Information:java: javacTask: 源发行版 1.8 需要目标发行版 1.8
    排序算法-(1)-插入排序
    去重脚本
    771.宝石与石头
    json 的应用
    xml 文件处理
  • 原文地址:https://www.cnblogs.com/tinaluo/p/7244277.html
Copyright © 2011-2022 走看看