Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

CLGeocoder.JSON

Queries data of geo coder as JSON.

Component Version macOS Windows Linux Server iOS SDK
CLGeocoder 10.1 ✅ Yes ❌ No ❌ No ❌ No ✅ Yes
MBS( "CLGeocoder.JSON"; Geocoder )   More

Parameters

Parameter Description Example
Geocoder The reference number of the geocoder instance. $Geocoder

Result

Returns JSON or error.

Description

Queries data of geo coder as JSON.
This includes status variables, the error dictionary with details in case of error and the array of place marks with details for a place mark including location, address text and time zone for the location.

Examples

Query in one let statement and return JSON or error:

Let ( [
    Address = "Berlin, Germany";
    // run query and wait a bit
    g = MBS( "CLGeocoder.GeocodeAddressString"; Address; 1 );
    e = MBS("IsError");
    // query JSON if we got something
    r = If (e = 0; MBS( "CLGeocoder.JSON"; g ); g);
    // free resources
    f = If (e = 0; MBS( "CLGeocoder.Close"; g ); 0)
]; r )

Run query and get back JSON or error:

Let ( [
    latitude = 52.517631899999998;
    longitude = 13.4096574;
    // run query and wait a bit
    g = MBS( "CLGeocoder.ReverseGeocodeLocation"; latitude; longitude; 1 );
    e = MBS("IsError");
    // query JSON if we got something
    r = If (e = 0; MBS( "CLGeocoder.JSON"; g ); g);
    // free resources
    f = If (e = 0; MBS( "CLGeocoder.Close"; g ); 0)
]; r )

See also

Release notes

  • Version 10.1

Example Databases

Blog Entries

This function checks for a license.

Created 12nd February 2020, last changed 12nd February 2020


CLGeocoder.GeocodeAddressString - CLGeocoder.PlacemarkCount