fix param
This commit is contained in:
parent
03340280d0
commit
5cedc661f5
|
@ -19,7 +19,7 @@ class Point extends Data
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function markerUrl(string $zoom = 20): string
|
public function markerUrl(string $zoom = '20'): string
|
||||||
{
|
{
|
||||||
return '/osm-static-maps/?' . http_build_query([
|
return '/osm-static-maps/?' . http_build_query([
|
||||||
'geojson' => json_encode(['type' => 'Point', 'coordinates' => [$this->lon, $this->lat]]),
|
'geojson' => json_encode(['type' => 'Point', 'coordinates' => [$this->lon, $this->lat]]),
|
||||||
|
|
Loading…
Reference in New Issue