本文主要是介绍跟着实例学习OpenLayers(二),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
geojson.html
http://openlayers.org/en/latest/examples/geojson.html
使用geojson的features作为vecorLayer的数据源(source)
<div id="map" class="map"></div><script>var image = new ol.style.Circle({radius: 5,fill: null,stroke: new ol.style.Stroke({color: 'red', width: 1})});var styles = {'Point': new ol.style.Style({image: image}),'LineString': new ol.style.Style({stroke: new ol.style.Stroke({color: 'green',width: 1})}),'MultiLineString': new ol.style.Style({stroke: new ol.style.Stroke({color: 'green',width: 1})}),'MultiPoint': new ol.style.Style({image: image}),
这篇关于跟着实例学习OpenLayers(二)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!