-
Notifications
You must be signed in to change notification settings - Fork 0
/
leaflet12-apidata.php
38 lines (32 loc) · 1.05 KB
/
leaflet12-apidata.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
// Define a list of points
$data = array (
array (
'id' => 80,
'caption' => 'Cycle parking',
'categoryId' => 'cycleparking',
'iconUrl' => "https://www.cyclestreets.net/images/categories/iconsets/cyclestreets/svg/cycleparking_good.svg",
'username' => 'martin',
'latitude' => 52.20173,
'longitude' => 0.12111,
),
array (
'id' => 2772,
'caption' => 'Nice bike',
'categoryId' => 'general',
'iconUrl' => "https://www.cyclestreets.net/images/categories/iconsets/cyclestreets/svg/general_neutral.svg",
'username' => 'simon',
'latitude' => 52.20203,
'longitude' => 0.12466,
),
array (
'id' => 2818,
'caption' => 'This cycle parking needs to be improved',
'categoryId' => 'cycleparking',
'iconUrl' => "https://www.cyclestreets.net/images/categories/iconsets/cyclestreets/svg/cycleparking_bad.svg",
'username' => 'martin',
'latitude' => 52.20055,
'longitude' => 0.12136,
),
);
?>