我的Angular应用中有一个GeoJSON功能集合,它是一组功能,每个功能都包含一个几何对象和属性对象。结构如下:
import { FeatureCollection, Feature } from 'geojson';
staticBreadcrumbs: GeoJSON.FeatureCollection<GeoJSON.Geometry>;
this.staticBreadcrumbs = {
type : 'FeatureCollection',
features: [
{
type: 'Feature',
properties: {
property1: 'property1',
property2: 'property2'
},
geometry: {
type: 'Point',
coordinates: [-117.14024305343628, 32.81294345855713]
}
},
{
type: 'Feature',
properties: {
...
我正在尝试为集合中的每个要素创建一个mapboxgl标记,并且需要从每个GeoJSON对象获取坐标,编译器告诉我坐标不是要素的一部分。特定的错误是:类型“几何”上不存在属性“坐标”。类型“ GeometryCollection”上不存在属性“ coordinates”。
console.log('this.staticBreadcrumbs.features[0]', this.staticBreadcrumbs.features[0]);
var marker = new Marker(el)
.setLngLat([
this.staticBreadcrumbs.features[0].geometry.coordinates[0],
this.staticBreadcrumbs.features[0].geometry.coordinates[1]
])
.addTo(this.map);
显示我的console.log
this.staticBreadcrumbs.features[0]
{type: "Feature", properties: {…}, geometry: {…}}
1. geometry:
1. coordinates: Array(2)
1. 0: -117.14024305343628
2. 1: 32.81294345855713
3. length: 2
4. __proto__: Array(0)
2. type: "Point"
2. __proto__: Object
2. properties: {deviceID: "CAP498", altitude: 401.6721913312, autonomous: 0, azimuth: 0, batteryStatusLabel: "Nominal", …}
3. type: "Feature"
4. __proto__: Object
这些坐标正是我期望的位置,但我无法到达它们。我尝试了各种不同的方式来声明Feature集合,但找不到正确的组合。
我需要做什么才能访问坐标?
谢谢.....
答案 0 :(得分:0)
我需要做什么才能访问坐标?
在尝试访问其geometry
属性之前,请检查Point
是coordinates
。
if (staticBreadcrumbs.features[0].geometry.type === 'Point') {
var marker = new Marker(el)
.setLngLat([
this.staticBreadcrumbs.features[0].geometry.coordinates[0],
this.staticBreadcrumbs.features[0].geometry.coordinates[1]
])
.addTo(this.map);
}
您遇到的问题是因为Geometry
is a union type。
联合类型描述的值可以是几种类型之一。我们使用竖线(
|
)来分隔每种类型...
这是Geometry
联合类型定义:
export type Geometry =
Point |
MultiPoint |
LineString |
MultiLineString |
Polygon |
MultiPolygon |
GeometryCollection;
如您所见,Geometry
类型是七个类型的并集。不幸的是,并非所有这些类型都包含coordinates
属性。
如果我们拥有一个具有联合类型的值,则我们只能访问该联合中所有类型都通用的成员。
这就是为什么我们在缩小类型后只能访问coordinates
属性。
如果在Point
中仅使用FeatureCollection
类型,则将Point
类型用作通用参数:
let staticBreadcrumbs: FeatureCollection<Point>;
如果您在FeatureCollection
中使用各种类型,请使用强制类型转换来告诉类型检查器您确定拥有Point
:
(staticBreadcrumbs.features[0].geometry as Point).coordinates[0]
如简短回答所示,您可以使用条件语句来缩小类型,而不必使用强制转换:
const geometry = staticBreadcrumbs.features[0].geometry;
if (geometry.type === 'Point') {
const coordinates00 = geometry.coordinates[0];
const coordinates01 = geometry.coordinates[1];
}
有一个简短的演示of that last example here。