Plugin that can have at most one enabled instance
Properties
Name | Access | Type | Description |
---|---|---|---|
IsEnabled | Read | Boolean | Is Enabled |
MapContentType | Read, Write | String | Map Content Type |
ServiceIdentifier | Read | String | Service Identifier |
Methods
GenerateServiceRedirectLink
Velocity
#set($stringResponse = $iGeocodeService.GenerateServiceRedirectLink($query))
JavaScript
var stringResponse = iGeocodeService.GenerateServiceRedirectLink(query);
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
query | String | Query | Required |
Returns
String
Geocode
Velocity
#set($geocodeResultResponse = $iGeocodeService.Geocode($query, $getMap))
JavaScript
var geocodeResultResponse = iGeocodeService.Geocode(query, getMap);
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
query | String | Query | Required | ||
getMap | Boolean | Get Map | Required |
Returns
GetMapUrl
GetMapUrl Overload 1
Velocity
#set($stringResponse = $iGeocodeService.GetMapUrl($lattitude, $longitude))
JavaScript
var stringResponse = iGeocodeService.GetMapUrl(lattitude, longitude);
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
lattitude | Double | Lattitude | Required | ||
longitude | Double | Longitude | Required |
GetMapUrl Overload 2
Velocity
#set($stringResponse = $iGeocodeService.GetMapUrl($lattitude, $longitude, $mapWidth, $mapHeight, $zoom))
JavaScript
var stringResponse = iGeocodeService.GetMapUrl(lattitude, longitude, mapWidth, mapHeight, zoom);
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
lattitude | Double | Lattitude | Required | ||
longitude | Double | Longitude | Required | ||
mapWidth | Int32 | Map Width | Required | ||
mapHeight | Int32 | Map Height | Required | ||
zoom | Int32 | Zoom | Required |
Returns
String
InitializeService
Velocity
#set($booleanResponse = $iGeocodeService.InitializeService())
JavaScript
var booleanResponse = iGeocodeService.InitializeService();
Returns
Boolean