名称

ST_AsEncodedPolyline — 从 LineString 几何图形返回编码的折线。

概要

text ST_AsEncodedPolyline(geometry geom, integer precision=5);

描述

将几何图形作为编码的折线返回。此格式由 Google Maps(精度为 5)和 Open Source Routing Machine(精度为 5 和 6)使用。

可选的 precision 指定在编码的折线中保留的小数位数。编码和解码时的值应相同,否则坐标将不正确。

可用性:2.2.0

示例

基本

	SELECT ST_AsEncodedPolyline(GeomFromEWKT('SRID=4326;LINESTRING(-120.2 38.5,-120.95 40.7,-126.453 43.252)'));
	--result--
	|_p~iF~ps|U_ulLnnqC_mqNvxq`@
	

与地理线字符串和地理分段结合使用,并放在 Google 地图上

-- the SQL for Boston to San Francisco, segments every 100 KM
	SELECT ST_AsEncodedPolyline(
		ST_Segmentize(
			ST_GeogFromText('LINESTRING(-71.0519 42.4935,-122.4483 37.64)'),
				100000)::geometry) As encodedFlightPath;

javascript 将类似于以下内容,其中 $ 变量替换为查询结果

<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?libraries=geometry"></script>
<script type="text/javascript">
	 flightPath = new google.maps.Polyline({
			path:  google.maps.geometry.encoding.decodePath("$encodedFlightPath"),
			map: map,
			strokeColor: '#0000CC',
			strokeOpacity: 1.0,
			strokeWeight: 4
		});
</script>
	

另请参阅

ST_LineFromEncodedPolylineST_Segmentize