Skip to content
This repository was archived by the owner on Sep 20, 2019. It is now read-only.

Commit 8381bda

Browse files
committed
docs(examples): fix examples with mapbox layers
1 parent c79a3ac commit 8381bda

File tree

51 files changed

+274
-274
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+274
-274
lines changed

dist/ui-leaflet.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* ui-leaflet 1.0.0 2016-09-27
2+
* ui-leaflet 1.0.0 2016-09-29
33
* ui-leaflet - An AngularJS directive to easily interact with Leaflet maps
44
* git: https://github.com/angular-ui/ui-leaflet
55
*/

dist/ui-leaflet.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/ui-leaflet.min.no-header.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/ui-leaflet_dev_mapped.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/0107-basic-tiles-example.html

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,22 @@
2525
},
2626
mapbox_outdoors: {
2727
name: 'Mapbox Outdoors',
28-
url: 'http://api.tiles.mapbox.com/v4/{mapid}/{z}/{x}/{y}.png?access_token={apikey}',
28+
url: '//api.mapbox.com/styles/v1/{user}/{mapId}/tiles/256/{z}/{x}/{y}?access_token={apiKey}',
2929
type: 'xyz',
3030
options: {
31-
apikey: 'pk.eyJ1IjoiYnVmYW51dm9scyIsImEiOiJLSURpX0pnIn0.2_9NrLz1U9bpwMQBhVk97Q',
32-
mapid: 'bufanuvols.lia3no0m'
31+
user: 'elesdoar',
32+
apiKey: 'pk.eyJ1IjoiZWxlc2RvYXIiLCJhIjoiY2l0bmcwaDNpMDQzMTJvbDRpaTltN2dlbiJ9.KDnhRVh9St6vpQovMI7iLg',
33+
mapId: 'citng3g0g003s2it88y9lg769'
3334
}
3435
},
35-
mapbox_wheat: {
36+
mapbox_satellite: {
3637
name: 'Mapbox Wheat Paste',
37-
url: 'http://api.tiles.mapbox.com/v4/{mapid}/{z}/{x}/{y}.png?access_token={apikey}',
38+
url: '//api.mapbox.com/styles/v1/{user}/{mapId}/tiles/256/{z}/{x}/{y}?access_token={apiKey}',
3839
type: 'xyz',
3940
options: {
40-
apikey: 'pk.eyJ1IjoiYnVmYW51dm9scyIsImEiOiJLSURpX0pnIn0.2_9NrLz1U9bpwMQBhVk97Q',
41-
mapid: 'bufanuvols.lia35jfp'
41+
user: 'elesdoar',
42+
apiKey: 'pk.eyJ1IjoiZWxlc2RvYXIiLCJhIjoiY2l0bmcwaDNpMDQzMTJvbDRpaTltN2dlbiJ9.KDnhRVh9St6vpQovMI7iLg',
43+
mapId: 'citngqecv00362hphvm5m7myb'
4244
}
4345
}
4446
};
@@ -49,7 +51,7 @@
4951
lng: -0.09,
5052
zoom: 8
5153
},
52-
tiles: tilesDict.mapbox_wheat
54+
tiles: tilesDict.mapbox_satellite
5355
});
5456

5557
$scope.changeTiles = function(tiles) {
@@ -66,7 +68,7 @@ <h1>Changing tiles example</h1>
6668
<button ng-click="changeTiles('opencyclemap')" class="btn btn-default">OpenCycleMaps</button>
6769
<button ng-click="changeTiles('openstreetmap')" class="btn btn-default">OpenStreetMaps</button>
6870
<button ng-click="changeTiles('mapbox_outdoors')" class="btn btn-default">Mapbox Outdoors</button>
69-
<button ng-click="changeTiles('mapbox_wheat')" class="btn btn-default">Mapbox Wheat Paste</button>
71+
<button ng-click="changeTiles('mapbox_satellite')" class="btn btn-default">Mapbox Satellite</button>
7072
</p>
7173
<p>Current TileLayer Url: <strong ng-bind="tiles.url"></strong></p>
7274
</body>

examples/0121-basic-double-map-toggle-example.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,12 @@
4747
},
4848
tiles2: {
4949
name: 'Mapbox Outdoors',
50-
url: 'http://api.tiles.mapbox.com/v4/{mapid}/{z}/{x}/{y}.png?access_token={apikey}',
50+
url: '//api.mapbox.com/styles/v1/{user}/{mapId}/tiles/256/{z}/{x}/{y}?access_token={apiKey}',
5151
type: 'xyz',
5252
options: {
53-
apikey: 'pk.eyJ1IjoiYnVmYW51dm9scyIsImEiOiJLSURpX0pnIn0.2_9NrLz1U9bpwMQBhVk97Q',
54-
mapid: 'bufanuvols.lia3no0m'
53+
user: 'elesdoar',
54+
apiKey: 'pk.eyJ1IjoiZWxlc2RvYXIiLCJhIjoiY2l0bmcwaDNpMDQzMTJvbDRpaTltN2dlbiJ9.KDnhRVh9St6vpQovMI7iLg',
55+
mapId: 'citng3g0g003s2it88y9lg769'
5556
}
5657
},
5758
paths2: {

examples/0201-layers-simple-example.html

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<script src="../bower_components/leaflet/dist/leaflet.js"></script>
77
<script src="../bower_components/angular-simple-logger/dist/angular-simple-logger.js"></script>
88
<script src="../dist/ui-leaflet.min.js"></script>
9+
<script src="https://rawgit.com/elesdoar/ui-leaflet-layers/master/dist/ui-leaflet-layers.min.js"></script>
910
<link rel="stylesheet" href="../bower_components/leaflet/dist/leaflet.css" />
1011
<script>
1112
var app = angular.module("demoapp", ['ui-leaflet']);
@@ -26,12 +27,10 @@
2627
baselayers: {
2728
mapbox_light: {
2829
name: 'Mapbox Light',
29-
url: 'http://api.tiles.mapbox.com/v4/{mapid}/{z}/{x}/{y}.png?access_token={apikey}',
30-
type: 'xyz',
31-
layerOptions: {
32-
apikey: 'pk.eyJ1IjoiYnVmYW51dm9scyIsImEiOiJLSURpX0pnIn0.2_9NrLz1U9bpwMQBhVk97Q',
33-
mapid: 'bufanuvols.lia22g09'
34-
}
30+
type: 'mapbox',
31+
user: 'elesdoar',
32+
key: 'citojtj9e00022iqjmdzhrdwd',
33+
apiKey: 'pk.eyJ1IjoiZWxlc2RvYXIiLCJhIjoiY2l0bmcwaDNpMDQzMTJvbDRpaTltN2dlbiJ9.KDnhRVh9St6vpQovMI7iLg'
3534
},
3635
osm: {
3736
name: 'OpenStreetMap',

examples/0204-layers-dynamic-addition-example.html

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,17 @@
77
<script src="../bower_components/leaflet/dist/leaflet.js"></script>
88
<script src="../bower_components/angular-simple-logger/dist/angular-simple-logger.js"></script>
99
<script src="../dist/ui-leaflet.min.js"></script>
10+
<script src="https://rawgit.com/elesdoar/ui-leaflet-layers/master/dist/ui-leaflet-layers.min.js"></script>
1011
<script>
1112
var app = angular.module("demoapp", ['ui-leaflet']);
1213
app.controller("LayersDynamicAdditionController", [ "$scope", function($scope) {
1314
$scope.definedLayers = {
14-
mapbox_wheat: {
15-
name: 'Mapbox Wheat Paste',
16-
url: 'http://api.tiles.mapbox.com/v4/{mapid}/{z}/{x}/{y}.png?access_token={apikey}',
17-
type: 'xyz',
18-
layerOptions: {
19-
apikey: 'pk.eyJ1IjoiYnVmYW51dm9scyIsImEiOiJLSURpX0pnIn0.2_9NrLz1U9bpwMQBhVk97Q',
20-
mapid: 'bufanuvols.lia35jfp'
21-
}
15+
mapbox_light: {
16+
name: 'Mapbox Light',
17+
type: 'mapbox',
18+
user: 'elesdoar',
19+
key: 'citojtj9e00022iqjmdzhrdwd',
20+
apiKey: 'pk.eyJ1IjoiZWxlc2RvYXIiLCJhIjoiY2l0bmcwaDNpMDQzMTJvbDRpaTltN2dlbiJ9.KDnhRVh9St6vpQovMI7iLg'
2221
},
2322
osm: {
2423
name: 'OpenStreetMap',
@@ -52,7 +51,7 @@
5251
layers: {
5352
baselayers: {
5453
osm: $scope.definedLayers.osm,
55-
mapbox_wheat: $scope.definedLayers.mapbox_wheat
54+
mapbox_light: $scope.definedLayers.mapbox_light
5655
},
5756
overlays: {
5857
hillshade: $scope.definedOverlays.hillshade
@@ -84,8 +83,8 @@
8483
<body ng-controller="LayersDynamicAdditionController">
8584
<leaflet lf-center="bern" layers="layers" width="100%" height="480px"></leaflet>
8685
<h1>Dynamic addition/removal of layers</h1>
87-
<button type="button" ng-if="layers.baselayers['mapbox_wheat']" ng-click="toggleLayer('mapbox_wheat')">Remove Mapbox Wheat Layer</button>
88-
<button type="button" ng-if="!layers.baselayers['mapbox_wheat']" ng-click="toggleLayer('mapbox_wheat')">Add Mapbox Wheat Layer</button>
86+
<button type="button" ng-if="layers.baselayers['mapbox_light']" ng-click="toggleLayer('mapbox_light')">Remove Mapbox Light Layer</button>
87+
<button type="button" ng-if="!layers.baselayers['mapbox_light']" ng-click="toggleLayer('mapbox_light')">Add Light Wheat Layer</button>
8988
<button type="button" ng-if="layers.baselayers['osm']" ng-click="toggleLayer('osm')">Remove OpenStreetMap Layer</button>
9089
<button type="button" ng-if="!layers.baselayers['osm']" ng-click="toggleLayer('osm')">Add OpenStreetMap Layer</button>
9190
<button type="button" ng-if="layers.overlays['hillshade']" ng-click="toggleOverlay('hillshade')">Remove Hillshade Europe Overlay</button>

examples/0209-layers-esri-legend-service-example.html

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<script src="../bower_components/angular-simple-logger/dist/angular-simple-logger.js"></script>
99
<script src="../bower_components/esri-leaflet/dist/esri-leaflet.js"></script>
1010
<script src="../dist/ui-leaflet.min.js"></script>
11+
<script src="https://rawgit.com/elesdoar/ui-leaflet-layers/master/dist/ui-leaflet-layers.min.js"></script>
1112
<link rel="stylesheet" href="../bower_components/leaflet/dist/leaflet.css" />
1213

1314
<style>
@@ -92,13 +93,11 @@
9293
baselayers: {
9394
mapbox_light: {
9495
name: 'Mapbox Light',
95-
url: 'http://api.tiles.mapbox.com/v4/{mapid}/{z}/{x}/{y}.png?access_token={apikey}',
96-
type: 'xyz',
97-
layerOptions: {
98-
apikey: 'pk.eyJ1IjoiYnVmYW51dm9scyIsImEiOiJLSURpX0pnIn0.2_9NrLz1U9bpwMQBhVk97Q',
99-
mapid: 'bufanuvols.lia22g09'
100-
}
101-
}
96+
type: 'mapbox',
97+
user: 'elesdoar',
98+
key: 'citojtj9e00022iqjmdzhrdwd',
99+
apiKey: 'pk.eyJ1IjoiZWxlc2RvYXIiLCJhIjoiY2l0bmcwaDNpMDQzMTJvbDRpaTltN2dlbiJ9.KDnhRVh9St6vpQovMI7iLg'
100+
}
102101
},
103102
overlays: {
104103
usa_pop: {

examples/0211-layers-layergroup-simple-example.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<script src="../bower_components/leaflet/dist/leaflet.js"></script>
77
<script src="../bower_components/angular-simple-logger/dist/angular-simple-logger.js"></script>
88
<script src="../dist/ui-leaflet.js"></script>
9+
<script src="https://rawgit.com/elesdoar/ui-leaflet-layers/master/dist/ui-leaflet-layers.min.js"></script>
910
<script src="http://danzel.github.io/Leaflet.utfgrid/src/leaflet.utfgrid.js"></script>
1011
<link rel="stylesheet" href="../bower_components/leaflet/dist/leaflet.css" />
1112
<script>

examples/0212-layers-hide-overlays-on-selector-example.html

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<script src="../bower_components/leaflet/dist/leaflet.js"></script>
77
<script src="../bower_components/angular-simple-logger/dist/angular-simple-logger.js"></script>
88
<script src="../dist/ui-leaflet.min.js"></script>
9+
<script src="https://rawgit.com/elesdoar/ui-leaflet-layers/master/dist/ui-leaflet-layers.min.js"></script>
910
<link rel="stylesheet" href="../bower_components/leaflet/dist/leaflet.css" />
1011
<script>
1112
var app = angular.module("demoapp", ['ui-leaflet']);
@@ -22,14 +23,11 @@
2223
layers: {
2324
baselayers: {
2425
xyz: {
25-
name: 'Mapbox Streets',
26-
url: 'http://a.tiles.mapbox.com/v3/examples.map-i86nkdio/{z}/{x}/{y}.png',
27-
type: 'xyz',
28-
layerOptions: {
29-
showOnSelector: true,
30-
apikey: 'pk.eyJ1IjoiYnVmYW51dm9scyIsImEiOiJLSURpX0pnIn0.2_9NrLz1U9bpwMQBhVk97Q',
31-
mapid: 'bufanuvols.ll5em372'
32-
}
26+
name: 'Mapbox Outdoors',
27+
type: 'mapbox',
28+
user: 'elesdoar',
29+
apiKey: 'pk.eyJ1IjoiZWxlc2RvYXIiLCJhIjoiY2l0bmcwaDNpMDQzMTJvbDRpaTltN2dlbiJ9.KDnhRVh9St6vpQovMI7iLg',
30+
key: 'citng3g0g003s2it88y9lg769'
3331
}
3432
},
3533
overlays: {

examples/0216-layers-overlays-markercluster-example.html renamed to examples/0215-layers-overlays-markercluster-example.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@
77
<script src="../bower_components/angular-simple-logger/dist/angular-simple-logger.js"></script>
88
<script src="../dist/ui-leaflet.js"></script>
99
<link rel="stylesheet" href="../bower_components/leaflet/dist/leaflet.css" />
10+
<!--
11+
See Issue https://github.com/Leaflet/Leaflet.markercluster/issues/528
1012
<script src="../bower_components/leaflet.markercluster/dist/leaflet.markercluster.js"></script>
13+
-->
14+
<script src="http://pastebin.com/raw.php?i=3ZjK6LtA"></script>
1115
<link rel="stylesheet" href="../bower_components/leaflet.markercluster/dist/MarkerCluster.css" />
1216
<link rel="stylesheet" href="../bower_components/leaflet.markercluster/dist/MarkerCluster.Default.css" />
1317
<meta name="viewport" content="width=device-width, initial-scale=1.0">

examples/0221-layers-heatmap-example.html renamed to examples/0219-layers-heatmap-example.html

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,10 @@
4646
baselayers: {
4747
mapbox_light: {
4848
name: 'Mapbox Light',
49-
url: 'http://api.tiles.mapbox.com/v4/{mapid}/{z}/{x}/{y}.png?access_token={apikey}',
50-
type: 'xyz',
51-
layerOptions: {
52-
apikey: 'pk.eyJ1IjoiYnVmYW51dm9scyIsImEiOiJLSURpX0pnIn0.2_9NrLz1U9bpwMQBhVk97Q',
53-
mapid: 'bufanuvols.lia22g09'
54-
}
49+
type: 'mapbox',
50+
user: 'elesdoar',
51+
key: 'citojtj9e00022iqjmdzhrdwd',
52+
apiKey: 'pk.eyJ1IjoiZWxlc2RvYXIiLCJhIjoiY2l0bmcwaDNpMDQzMTJvbDRpaTltN2dlbiJ9.KDnhRVh9St6vpQovMI7iLg'
5553
}
5654
}
5755
}

examples/0223-layers-refresh-overlay-every-minute-example.html renamed to examples/0221-layers-refresh-overlay-every-minute-example.html

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
<meta name="viewport" content="width=device-width, initial-scale=1.0">
55
<script src="../bower_components/angular/angular.min.js"></script>
66
<script src="../bower_components/leaflet/dist/leaflet.js"></script>
7-
<script src="../bower_components/angular-simple-logger/dist/angular-simple-logger.js"></script>
7+
<script src="../bower_components/angular-simple-logger/dist/angular-simple-logger.js"></script>
88
<script src="../dist/ui-leaflet.min.js"></script>
9+
<script src="https://rawgit.com/elesdoar/ui-leaflet-layers/master/dist/ui-leaflet-layers.min.js"></script>
910
<link rel="stylesheet" href="../bower_components/leaflet/dist/leaflet.css" />
1011
<script>
1112
var app = angular.module("demoapp", ['ui-leaflet']);
@@ -20,12 +21,10 @@
2021
baselayers: {
2122
mapbox_light: {
2223
name: 'Mapbox Light',
23-
url: 'http://api.tiles.mapbox.com/v4/{mapid}/{z}/{x}/{y}.png?access_token={apikey}',
24-
type: 'xyz',
25-
layerOptions: {
26-
apikey: 'pk.eyJ1IjoiYnVmYW51dm9scyIsImEiOiJLSURpX0pnIn0.2_9NrLz1U9bpwMQBhVk97Q',
27-
mapid: 'bufanuvols.lia3no0m'
28-
}
24+
type: 'mapbox',
25+
user: 'elesdoar',
26+
key: 'citojtj9e00022iqjmdzhrdwd',
27+
apiKey: 'pk.eyJ1IjoiZWxlc2RvYXIiLCJhIjoiY2l0bmcwaDNpMDQzMTJvbDRpaTltN2dlbiJ9.KDnhRVh9St6vpQovMI7iLg'
2928
}
3029
},
3130
overlays: {

examples/0307-paths-events-example-with-id.html renamed to examples/0308-paths-events-example-with-id.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
</head>
8080
<body ng-controller="PathEventsController">
8181
<leaflet id="myMap" lf-center="center" paths="paths" layers="layers" event-broadcast="events" paths="paths" width="100%" height="480px"></leaflet>
82-
<h1>Paths specific events propagation exampl</h1>
82+
<h1>Paths specific events propagation exampl with map ID</h1>
8383
<p>Click on path points to trigger an event</p>
8484
<p>Mouse over: <strong ng-bind="mouseover"></strong></p>
8585
<p>You clicked <b>{{clicked}}</b> times </p>

examples/0401-controls-draw-example.html

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<script src="../bower_components/leaflet/dist/leaflet.js"></script>
77
<script src="../bower_components/angular-simple-logger/dist/angular-simple-logger.js"></script>
88
<script src="../dist/ui-leaflet.min.js"></script>
9+
<script src="https://rawgit.com/elesdoar/ui-leaflet-layers/master/dist/ui-leaflet-layers.min.js"></script>
910
<script src="../bower_components/leaflet.draw/dist/leaflet.draw.js"></script>
1011
<link rel="stylesheet" href="../bower_components/leaflet/dist/leaflet.css" />
1112
<link rel="stylesheet" href="../bower_components/leaflet.draw/dist/leaflet.draw.css" />
@@ -25,12 +26,10 @@
2526
baselayers: {
2627
mapbox_light: {
2728
name: 'Mapbox Light',
28-
url: 'http://api.tiles.mapbox.com/v4/{mapid}/{z}/{x}/{y}.png?access_token={apikey}',
29-
type: 'xyz',
30-
layerOptions: {
31-
apikey: 'pk.eyJ1IjoiYnVmYW51dm9scyIsImEiOiJLSURpX0pnIn0.2_9NrLz1U9bpwMQBhVk97Q',
32-
mapid: 'bufanuvols.lia22g09'
33-
},
29+
type: 'mapbox',
30+
user: 'elesdoar',
31+
key: 'citojtj9e00022iqjmdzhrdwd',
32+
apiKey: 'pk.eyJ1IjoiZWxlc2RvYXIiLCJhIjoiY2l0bmcwaDNpMDQzMTJvbDRpaTltN2dlbiJ9.KDnhRVh9St6vpQovMI7iLg',
3433
layerParams: {
3534
showOnSelector: false
3635
}

examples/0403-controls-fullscreen-example.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,12 @@
2121
},
2222
tiles: {
2323
name: 'Mapbox Comic',
24-
url: 'http://api.tiles.mapbox.com/v4/{mapid}/{z}/{x}/{y}.png?access_token={apikey}',
24+
url: '//api.mapbox.com/styles/v1/{user}/{mapId}/tiles/256/{z}/{x}/{y}?access_token={apiKey}',
2525
type: 'xyz',
2626
options: {
27-
apikey: 'pk.eyJ1IjoiYnVmYW51dm9scyIsImEiOiJLSURpX0pnIn0.2_9NrLz1U9bpwMQBhVk97Q',
28-
mapid: 'bufanuvols.lpa06kfg'
27+
user: 'elesdoar',
28+
apiKey: 'pk.eyJ1IjoiZWxlc2RvYXIiLCJhIjoiY2l0bmcwaDNpMDQzMTJvbDRpaTltN2dlbiJ9.KDnhRVh9St6vpQovMI7iLg',
29+
mapId: 'cii0r8pax00zvaikonyem8014'
2930
}
3031
},
3132
controls: {

examples/0404-controls-minimap-example.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,12 @@
2323
},
2424
tiles: {
2525
name: 'Mapbox Comic',
26-
url: 'http://api.tiles.mapbox.com/v4/{mapid}/{z}/{x}/{y}.png?access_token={apikey}',
26+
url: '//api.mapbox.com/styles/v1/{user}/{mapId}/tiles/256/{z}/{x}/{y}?access_token={apiKey}',
2727
type: 'xyz',
2828
options: {
29-
apikey: 'pk.eyJ1IjoiYnVmYW51dm9scyIsImEiOiJLSURpX0pnIn0.2_9NrLz1U9bpwMQBhVk97Q',
30-
mapid: 'bufanuvols.lpa06kfg'
29+
user: 'elesdoar',
30+
apiKey: 'pk.eyJ1IjoiZWxlc2RvYXIiLCJhIjoiY2l0bmcwaDNpMDQzMTJvbDRpaTltN2dlbiJ9.KDnhRVh9St6vpQovMI7iLg',
31+
mapId: 'cii0r8pax00zvaikonyem8014'
3132
}
3233
},
3334
controls: {}

0 commit comments

Comments
 (0)