(latitude, longitude, zoom)
| 13818 | this._markers = []; |
| 13819 | } |
| 13820 | setView(latitude, longitude, zoom) { |
| 13821 | this.map.setCenter([longitude, latitude]); |
| 13822 | this.map.setZoom(zoom); |
| 13823 | } |
| 13824 | async resolveAddress(string) { |
| 13825 | let response = await fetch(`https://api.mapbox.com/geocoding/v5/mapbox.places/${string}.json?access_token=${this.settings.accessToken}`).then((response2) => response2.json()); |
| 13826 | let position = {}; |
no outgoing calls
no test coverage detected