Gets or sets the location of this Decoration.
Namespace: MindFusion.Mapping
Package: Decoration.js
JavaScript Copy Code |
---|
Object.defineProperty(Decoration.prototype, "location", { value: LatLong }); |
LatLong. A LatLong instance representing the geographic coordinates of this Decoration.
The following code creates a new Marker and uses the location property to specify its coordinates. The Marker class derives from Decoration.
JavaScript Copy Code |
---|
var m = MindFusion.Mapping; var mark = new m.Marker(); |