LeafLet 簡單使用

Leaflet 使用

最近在Angular項目中,用到了地圖,因爲種種緣由放棄了百度地圖api使用,最後選擇了leaflet,簡單介紹一下。javascript

介紹:

Leaflet 是一個爲移動設備設計的交互式地圖的開源的 javascript庫, 並只有38k,包含了大多數開發者須要的地圖特色。css

準備:下載 leaflet 文件

訪問: Leaflet下載官網html

在單一的HTML頁面中使用Leaflet

  • 建立一個文件夾 leaflet_test
  • 文件夾下建立一個index.html
  • 將上述下載的leaflet文件放到leaflet_test文件夾下
  • 在index.html插入以下代碼
<!-- 引入 文件 --> <link rel="stylesheet" href="./leaflet.css" /> <script src="./leaflet.js"> </script> <!-- 增長地圖高度 --> <style> #mapDiv { height: 300px; } </style> <!-- 建立一個 地圖的div id 必須有 可是自定義 --> <div id="mapDiv"></div> <script> //到 mapbox 官網註冊並建立下面的access token都是免費的,不過有5w次的瀏覽限制 var url = 'https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token=pk.eyJ1Ijoia2FuZXdhbmciLCJhIjoiY2pwM2UxNHNkMGF1MzNwc2FtMnNhdXJsMCJ9.KZpCBtizDeltZO6JhGc6_w'; //初始化 地圖 var leafletMap = L.map('mapDiv').setView([41, 123], 5); //將圖層加載到地圖上,並設置最大的聚焦還有map樣式 L.tileLayer(url, { maxZoom: 18, id: 'mapbox.streets' }).addTo(leafletMap); //增長一個marker ,地圖上的標記,並綁定了一個popup,默認打開 L.marker([41, 123]).addTo(leafletMap) .bindPopup("<b>Hello world!</b><br />I am a popup.").openPopup(); //增長一個圈,設置圓心、半徑、樣式 L.circle([41, 123], 500, { color: 'red', fillColor: '#f03', fillOpacity: 0.5 }).addTo(leafletMap).bindPopup("I am a circle."); //增長多邊形 L.polygon([ [41, 123], [39, 121], [41, 126] ]).addTo(leafletMap).bindPopup("I am a polygon."); //爲點擊地圖的事件 增長popup var popup = L.popup(); function onMapClick(e) { popup .setLatLng(e.latlng) .setContent("You clicked the map at " + e.latlng.toString()) .openOn(leafletMap); } leafletMap.on('click', onMapClick); </script> 
  • 上述代碼可直接使用,下面先上效果圖,再解釋代碼的含義
 
image
  • 代碼解釋:
    • 1.引入Leaflet css 與js 文件,官網要求,css在前 js在後。不過我簡單試過沒啥變化。
    • 2.增長 地圖css樣式,設置高度,這個官網要求必須的。**不設置會不顯示地圖 **
    • 建立裝地圖的div 記住這個div的 id
    • 開始建立地圖,咱們先去準備一個 瓦片圖層 本文使用的是 mapbox
    • 到 map box上註冊帳號,登陸後 建立一個access token,copy到代碼url accesstoken後面,使用個人也好使
    • 初始化map 使用 L.map('mapDiv').setView([51.505, -0.09], 13),其中[51.505, -0.09]地理位置,13是變焦的大小
    • 將圖層加到map上。其中url是圖層的資源的url,maxZoom 是最大的聚焦【mapbox官網最大的也是18了】,id 是 地圖的樣式並非咱們日常認識的id,本文選擇了 street 的map
    • mapbox 支持的地圖樣式,共6個默認的(默認提供的,能夠本身建立上傳)
      • Mapbox Incidents V1 [id=mapbox.mapbox-incidents-v1]
      • Mapbox Statellite[mapbox.satellite]
      • ...
    • 加標記、加圓圈、加多邊形,再爲地圖每一個位置點擊增長事件
  • 至此,簡單的應用就完成了。

在單一頁面中使用中國各類地圖

爲何單獨說,由於leaflet提供了一個插件 Leaflet.ChineseTmsProviders能夠訪問 github主頁查看。下面咱們看看如何使用它。java

  • 準備去github上下載插件的js文件 github下載,下載後一樣放到與leaflet包同一路徑下
  • 上一下插件代碼:
L.TileLayer.ChinaProvider = L.TileLayer.extend({

    initialize: function(type, options) { // (type, Object) var providers = L.TileLayer.ChinaProvider.providers; var parts = type.split('.'); var providerName = parts[0]; var mapName = parts[1]; var mapType = parts[2]; var url = providers[providerName][mapName][mapType]; options.subdomains = providers[providerName].Subdomains; L.TileLayer.prototype.initialize.call(this, url, options); } }); L.TileLayer.ChinaProvider.providers = { TianDiTu: { Normal: { Map: "http://t{s}.tianditu.cn/DataServer?T=vec_w&X={x}&Y={y}&L={z}", Annotion: "http://t{s}.tianditu.cn/DataServer?T=cva_w&X={x}&Y={y}&L={z}" }, Satellite: { Map: "http://t{s}.tianditu.cn/DataServer?T=img_w&X={x}&Y={y}&L={z}", Annotion: "http://t{s}.tianditu.cn/DataServer?T=cia_w&X={x}&Y={y}&L={z}" }, Terrain: { Map: "http://t{s}.tianditu.cn/DataServer?T=ter_w&X={x}&Y={y}&L={z}", Annotion: "http://t{s}.tianditu.cn/DataServer?T=cta_w&X={x}&Y={y}&L={z}" }, Subdomains: ['0', '1', '2', '3', '4', '5', '6', '7'] }, GaoDe: { Normal: { Map: 'http://webrd0{s}.is.autonavi.com/appmaptile?lang=zh_cn&size=1&scale=1&style=8&x={x}&y={y}&z={z}' }, Satellite: { Map: 'http://webst0{s}.is.autonavi.com/appmaptile?style=6&x={x}&y={y}&z={z}', Annotion: 'http://webst0{s}.is.autonavi.com/appmaptile?style=8&x={x}&y={y}&z={z}' }, Subdomains: ["1", "2", "3", "4"] }, Google: { Normal: { Map: "http://www.google.cn/maps/vt?lyrs=m@189&gl=cn&x={x}&y={y}&z={z}" }, Satellite: { Map: "http://www.google.cn/maps/vt?lyrs=s@189&gl=cn&x={x}&y={y}&z={z}" }, Subdomains: [] }, Geoq: { Normal: { Map: "http://map.geoq.cn/ArcGIS/rest/services/ChinaOnlineCommunity/MapServer/tile/{z}/{y}/{x}", Color: "http://map.geoq.cn/ArcGIS/rest/services/ChinaOnlineStreetColor/MapServer/tile/{z}/{y}/{x}", PurplishBlue: "http://map.geoq.cn/ArcGIS/rest/services/ChinaOnlineStreetPurplishBlue/MapServer/tile/{z}/{y}/{x}", Gray: "http://map.geoq.cn/ArcGIS/rest/services/ChinaOnlineStreetGray/MapServer/tile/{z}/{y}/{x}", Warm: "http://map.geoq.cn/ArcGIS/rest/services/ChinaOnlineStreetWarm/MapServer/tile/{z}/{y}/{x}", Cold: "http://map.geoq.cn/ArcGIS/rest/services/ChinaOnlineStreetCold/MapServer/tile/{z}/{y}/{x}" }, Subdomains: [] } }; L.tileLayer.chinaProvider = function(type, options) { return new L.TileLayer.ChinaProvider(type, options); }; 
  • 更改index.html文件
<script src="./leaflet.js"></script> <link rel="stylesheet" href="./leaflet.css" /> <script src="leaflet.ChineseTmsProviders.js"></script> <style> //#mapDiv { height: 300px; } .test { height: 300px; } </style> <div id="mapDiv" class='test'></div> <script> //插件把 定義了多個國內的瓦片圖層,咱們只須要經過提供的方法訪問到相應的圖層便可 //從插件代碼能夠看出 須要傳入 providerName.mapName.mapType 從插件代碼中查找所須要的值 var test = L.tileLayer.chinaProvider('Geoq.Normal.Map', { maxZoom: 18, minZoom: 5 }); //此處能夠定義多個圖層,並能夠再頁面中進行選擇 var baseLayers = {"測試地圖":test} var map = L.map("mapDiv", { center: [41.80, 123.43], zoom: 7, layers: [test], zoomControl: false }); L.control.layers(baseLayers, null).addTo(map); L.control.zoom({ zoomInTitle: '放大', zoomOutTitle: '縮小' }).addTo(map); </script> 
  • 上結果圖,此次只是使用插件沒有其餘功能。中心點是瀋陽市。
 
image

Leaflet 畫線裝飾插件

本次開發使用了另外一個插件polylineDecorator.jsgit

  • index.html
//以下代碼須要上一節的代碼 var arrow = L.polyline([[41.80, 123.43], [41.07, 123.00]], {opacity: 1,color: 'firebrick'}).bindPopup('I am red:').addTo(map);// var arrow2 = L.polyline([[41.80, 123.43], [40.13, 124.37]], {opacity: 1,color: 'lightgreen'}).bindPopup('I am green:').addTo(map); var arrow3 = L.polyline([[41.07, 123.00], [40.13, 124.37]], {opacity: 1,color: 'lightgreen'}).bindPopup('I am green:').addTo(map); var arrowHead = L.polylineDecorator(arrow, { patterns: [ {offset: '30%' ,endOffset:'90%',repeat: 1000, symbol: L.Symbol.arrowHead({pixelSize: 10, polygon: false,pathOptions: {stroke: true,weight:2,color: 'firebrick'}})} ] }).addTo(map); 
  • 上圖:在一條線上增長了一個箭頭,還有不少的裝飾,可訪問github主頁查看example 的代碼
 
image

在 angular中使用 leaflet.js

因爲leaflet是 javascript庫,而angular 使用的typescript 語言,這就存在一個問題。通過查詢,發現了ts的一個功能。.d.ts文件的使用。github

**注:以下內容,僅作介紹了,在咱們的項目中是成功的引入了leaflet了,若是很差使,請你們自行查詢一下吧。推薦一個介紹文章 **JavaScript 和 TypeScript 交叉口web

在項目的根目錄下建立文件【angular框架中是 src下】 index.d.tstypescript

文件內容:json

declare var L:any; //leaflet 

固然在angular.json須要引入相關的 leaflet的js文件api

在projects->architect->build->options->scripts中加入leaflet.js的路徑

相關的內容請查閱angular相關的介紹 Angular Cli Stories

做者:WangKane 連接:https://www.jianshu.com/p/40094c2ab109 來源:簡書 簡書著做權歸做者全部,任何形式的轉載都請聯繫做者得到受權並註明出處。
相關文章
相關標籤/搜索