Fixed syntax errors in GeoJSON samples

This commit is contained in:
Jovan Popovic
2016-12-18 23:23:01 +01:00
parent c39052a0e6
commit c5e7115d3a
2 changed files with 2 additions and 2 deletions
@@ -3,7 +3,7 @@ select
(
select
'Feature' as [type],
[Border].AsGeoJSON() as [geometry],
dbo.AsGeoJSON([Border]) as [geometry],
[StateProvinceName] as [properties.name],
[StateProvinceCode] as [properties.code],
[Border].STArea() as [properties.area],
@@ -3,7 +3,7 @@ select
(
select
'Feature' as [type],
[Location].AsGeoJSON() as [geometry],
dbo.AsGeoJSON([Location]) as [geometry],
[CityName] as [properties.name],
ac.LatestRecordedPopulation as [properties.population]
from Application.Cities ac, Application.StateProvinces asp