基础能力
网约车
概述和入门指南
基础服务
高级服务
Appearance
表示Point的类型
type PointLike = Point | Array<number>
const p1 = new DiMap.Point(-77, 38); // a PointLike which is a Point const p2 = [-77, 38]; // a PointLike which is an array of two numbers```