Add ios fixes

This commit is contained in:
Pieter Fiers 2020-07-27 13:04:38 +02:00
parent c26b037ca5
commit 5123c3836e
8 changed files with 136 additions and 200 deletions

View file

@ -82,13 +82,13 @@ export class GeoLocationHandler extends UIElement {
InnerRender(): string {
if (this.currentLocation.data) {
return "<img src='./assets/crosshair-blue.svg' alt='locate me'>";
return "<img src='assets/crosshair-blue.png' alt='locate me'>";
}
if (this._isActive.data) {
return "<img src='./assets/crosshair-blue-center.svg' alt='locate me'>";
return "<img src='assets/crosshair-blue-center.png' alt='locate me'>";
}
return "<img src='./assets/crosshair.svg' alt='locate me'>";
return "<img src='assets/crosshair.png' alt='locate me'>";
}