码迷,mamicode.com
首页 > Web开发 > 详细

postgis 利用 php 返回geojson格式数据

时间:2017-08-13 20:09:37      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:nec   fail   [1]   res   sel   echo   php   rom   postgres   

直接上代码

1、db_config.php

<?php

/*
 * All database connection variables
 */
   $host        = "host=127.0.0.1";
   $port        = "port=5432";
   $dbname      = "dbname=soil";
   $credentials = "user=postgres password=123456";
?>

 

2、getGeojson.php

<?php

header("Access-Control-Allow-Origin: *"); 
 
require_once __DIR__ . ‘/db_config.php‘;

$dbconn = pg_connect("$host $port $dbname $credentials") or die(‘connection failed‘);

$result = pg_query($dbconn, "select id,name, ST_AsGeoJSON(geom) from nj_polygon");
if (!$result) {
  echo "An error occurred.\n";
  exit;
}
 
# Build GeoJSON
$output    = ‘‘;
$rowOutput = ‘‘;
// check for empty result
if (pg_num_rows($result) > 0) {
    // looping through all results 
    while ($row = pg_fetch_row($result)) {
        $rowOutput = (strlen($rowOutput) > 0 ? ‘,‘ : ‘‘) . ‘{"type": "Feature", "geometry": ‘ . $row[2] . ‘, "properties": {"id":"‘ .$row[0] .‘","name":"‘ . $row[1] .‘"}‘;
        $rowOutput .= ‘}‘;
        $output .= $rowOutput;
    }
    #echo json_encode($geojson, JSON_NUMERIC_CHECK);
    $output = ‘{ "type": "FeatureCollection", "features": [ ‘ . $output . ‘ ]}‘;
    echo $output;
} else {
    echo "no data";
}
pg_close($dbconn);
?>

访问链接即可返回geojson数据

postgis 利用 php 返回geojson格式数据

标签:nec   fail   [1]   res   sel   echo   php   rom   postgres   

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

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