Components | All | New | MacOS | Windows | Linux | iOS | ||||
Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old |
MapView.CoordinateForPoint
Queries coordinate for a point.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
MapView | 11.5 | ✅ Yes | ❌ No | ❌ No | ❌ No | ✅ Yes |
MBS( "MapView.CoordinateForPoint"; MapView; X; Y ) More
Parameters
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 |
Result
Returns JSON or error.
Description
Queries coordinate for a point.Returns JSON, which contains longitude, latitude, x and y numbers.
Examples
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
}
See also
Release notes
- Version 11.5
- Added MapView.CoordinateForPoint and MapView.PointForCoordinate functions.
Blog Entries
- New in version 11.5 of MBS FileMaker Plugin
- Neues MBS FileMaker Plugin 11.5 - Über 6600 Funktionen in einem Plugin
- MBS FileMaker Plugin 11.5
- MBS FileMaker Plugin, version 11.5pr3
This function is free to use.
Created 13th October 2021, last changed 13th October 2021