From fb9e123031da10865a37a3d5128d701fad515b04 Mon Sep 17 00:00:00 2001 From: Emanuel Mutschlechner Date: Tue, 7 Jan 2020 23:43:57 +0100 Subject: [PATCH] Update README.md --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index cc38626..a2f7bf3 100644 --- a/README.md +++ b/README.md @@ -147,8 +147,8 @@ Show a custom marker icon. Absolute and relative URLs are supported. 'markers' => [ [ 'title' => 'Go NoWare', - 'lat' => '48.134664', - 'lng' => '11.555220', + 'lat' => 48.134664, + 'lng' => 11.555220, 'url' => 'https://gonoware.com', 'icon' => 'https://developers.google.com/maps/documentation/javascript/examples/full/images/beachflag.png', ], @@ -159,14 +159,14 @@ Show a custom marker icon. Absolute and relative URLs are supported. Additionally you may also specify the icon image size and anchor in pixels. The image will be aligned so that the tip of the icon is at the marker's geographical location. ```php @map([ - 'lat' => '48.134664', - 'lng' => '11.555220', - 'zoom' => '6', + 'lat' => 48.134664, + 'lng' => 11.555220, + 'zoom' => 6, 'markers' => [ [ 'title' => 'Go NoWare', - 'lat' => '48.134664', - 'lng' => '11.555220', + 'lat' => 48.134664, + 'lng' => 11.555220, 'url' => 'https://gonoware.com', 'icon' => 'https://developers.google.com/maps/documentation/javascript/examples/full/images/beachflag.png', 'icon_size' => [20, 32],