码迷,mamicode.com
首页 > 数据库 > 详细

OpenLayers添加点【php请求MySQL数据库返回GeoJSON数据】

时间:2016-12-30 02:31:11      阅读:298      评论:0      收藏:0      [点我收藏+]

标签:round   target   new   styles   oct   log   type   php   source   

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数据】

标签:round   target   new   styles   oct   log   type   php   source   

原文地址:http://www.cnblogs.com/marost/p/6235379.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!