Class GeoCoderAddress

A simple container to store an address created by the geocoder

Source : file core/lib/GeoCoderAddress.js at line 33

Constructor

new GeoCoderAddress ( nominatimName, street, city )

The constructor

Source : file core/lib/GeoCoderAddress.js at line 63

Parameters

Name Type Description
nominatimName String

The name found in OSM

street String

The house number and the street found in OSM

city String

The city and eventually the place found in OSM

Public getters and setters

readonly get city : String

The city and eventually the place found in OSM by the GeoCoder or an empty string

Source : file core/lib/GeoCoderAddress.js at line 89

readonly get name : String

The name found in OSM by the GeoCoder or an empty string

Source : file core/lib/GeoCoderAddress.js at line 75

readonly get street : String

The house number and the street found in OSM by the GeoCoder or an empty string

Source : file core/lib/GeoCoderAddress.js at line 82

Private properties

#city : String

The city and eventually the place found in OSM by the GeoCoder or an empty string

Source : file core/lib/GeoCoderAddress.js at line 54

#name : String

The name found in OSM by the GeoCoder or an empty string

Source : file core/lib/GeoCoderAddress.js at line 40

#street : String

The house number and the street found in OSM by the GeoCoder or an empty string

Source : file core/lib/GeoCoderAddress.js at line 47