Constructor
# new PositionControl(element, options)
Attach position control to an HTML element that when clicked (or permission already given) will show current position on the map.
Parameters:
Name | Type | Description |
---|---|---|
element |
HTMLElement
|
An element to hold the position control that should be added to the map |
options |
PositionControlOptions
|
Example
// Create element to hold the position control
const myPositionControlElm = document.createElement('div');
// Create position control and attach it to element
new mapsindoors.PositionControl(myPositionControlElm, { mapsIndoors: myMapsIndoors, maxAccuracy: 125 });
// Add the element now holding position control to your map:
// For Google Maps:
myMapsIndoorsInstance.getMap().controls[google.maps.ControlPosition.RIGHT_BOTTOM].push(myPositionControlElm);
// For Mapbox:
myMapsIndoorsInstance.getMap().addControl({ onAdd: function () { return myPositionControlElm }, onRemove: function () { } });
Members
GeolocationPosition
# currentPosition
The current position of the device if received (GeolocationPosition).
Methods
# panToCurrentPosition()
Pan map to center on the current position.
Example
// Create position control and always follow current position
const myPositionControlElm = document.createElement('div');
const myPositionControl = new mapsindoors.PositionControl(myPositionControlElm, { mapsIndoors: myMapsIndoors });
...
myPositionControl.addListener(myMapsindoors, 'position_received', () => {
myPositionControl.panToCurrentPosition();
});
# watchPosition(selfInvokedopt)
Request for current position, emit events and show position on map based on result.
Parameters:
Name | Type | Attributes | Default | Description |
---|---|---|---|---|
selfInvoked |
boolean
|
<optional> |
false | Used to track if call was invoked by clicking on position control or not. |