Topics
All
MacOS
(Only)
Windows
(Only)
Linux
(Only, Not)
iOS
(Only, Not)
Components
Crossplatform Mac & Win
Server
Client
Old
Deprecated
Guides
Examples
Videos
New in version:
12.1
12.2
12.3
12.4
12.5
13.0
13.1
13.2
13.3
13.4
Statistic
FMM
Blog
Queries coordinate for a point.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
MapView | 11.5 | ✅ Yes | ❌ No | ❌ No | ❌ No | ✅ Yes |
Parameter | Description | Example |
---|---|---|
MapView | The map view reference number. | $$MapView |
X | The x coordinate relative to the map view. | 5 |
Y | The y coordinate relative to the map view. | 5 |
Returns JSON or error.
Query top left coordinate:
MBS( "MapView.CoordinateForPoint"; $$MapView; 0; 0 )
Example result:
{
"y" : 0,
"latitude" : 50.562339495914216,
"x" : 0,
"longitude" : 6.4818784225510342
}
Query bottom right coordinate:
MBS( "MapView.CoordinateForPoint"; $$MapView; MBS( "MapView.GetWidth"; $$MapView); MBS( "MapView.GetHeight"; $$MapView) )
Example result:
{
"y" : 463,
"latitude" : 50.233777453829191,
"x" : 870,
"longitude" : 7.4504055550006285
}
This function is free to use.
Created 13th October 2021, last changed 13th October 2021