OpenLayers添加点php请求MySQL数据库返回GeoJSON数据
Posted marost
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了OpenLayers添加点php请求MySQL数据库返回GeoJSON数据相关的知识,希望对你有一定的参考价值。
php请求mysql数据库返回GeoJSON数据的实现方法请参见:
http://www.cnblogs.com/marost/p/6234514.html
OpenLayers【v3.19.1-dist】添加GeoJSON数据源图层
<!doctype html> <html lang="en"> <head> <link rel=\'stylesheet\' href=\'ol.css\'> <style> #map { height: 100%; width: 100%; } </style> <title>OpenLayers 3 example</title> <script src="ol.js" type="text/javascript"></script> </head> <body> <h1>My Map</h1> <div id="map"></div> <script type="text/javascript"> var raster = new ol.layer.Tile({ source: new ol.source.OSM() }); var vector = new ol.layer.Vector({ source: new ol.source.Vector({ url: \'http://yourip/getPosition.php\', format: new ol.format.GeoJSON() }) }); var map = new ol.Map({ layers: [raster, vector], target: \'map\', view: new ol.View({ center: [0, 0], zoom: 2 }) }); </script> </body> </html>
以上是关于OpenLayers添加点php请求MySQL数据库返回GeoJSON数据的主要内容,如果未能解决你的问题,请参考以下文章
在地图上基于OpenLayers实现点/线/面静态的绘制显示