summaryrefslogtreecommitdiff
path: root/src/lib/elm_map.eo
blob: e9b635d047b55bd28a349ba1e2db6be551fce604 (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
class Elm_Map (Elm_Widget, Elm_Interface_Scrollable,
               Elm_Interface_Atspi_Widget_Action)
{
   eo_prefix: elm_obj_map;
   properties {
      zoom {
         set {
            /*@
            Set the zoom level of the map.

            This sets the zoom level.

            It will respect limits defined by elm_map_zoom_min_set() and
            elm_map_zoom_max_set().

            By default these values are 0 (world map) and 18 (maximum zoom).

            This function should be used when zoom mode is set to #ELM_MAP_ZOOM_MODE_MANUAL.
            This is the default mode, and can be set with elm_map_zoom_mode_set().

            @see elm_map_zoom_mode_set()
            @see elm_map_zoom_get()

            @ingroup Map */
         }
         get {
            /*@
            Get the zoom level of the map.

            @return The current zoom level.

            This returns the current zoom level of the map object.

            Note that if you set the fill mode to other than #ELM_MAP_ZOOM_MODE_MANUAL
            (which is the default), the zoom level may be changed at any time by the
            map object itself to account for map size and map viewport size.

            @see elm_map_zoom_set() for details.

            @ingroup Map */
         }
         values {
            int zoom; /*@ The zoom level to set. */
         }
      }
      paused {
         set {
            /*@
            Pause or unpause the map.

            This sets the paused state to on (@c EINA_TRUE) or off (@c EINA_FALSE)
            for map.

            The default is off.

            This will stop zooming using animation, changing zoom levels will
            change instantly. This will stop any existing animations that are running.

            @see elm_map_paused_get()

            @ingroup Map */
         }
         get {
            /*@
            Get a value whether map is paused or not.

            @return @c EINA_TRUE means map is pause. @c EINA_FALSE indicates
            it is not.

            This gets the current paused state for the map object.

            @see elm_map_paused_set() for details.

            @ingroup Map */
         }
         values {
            bool paused; /*@ Use @c EINA_TRUE to pause the map @p obj or @c EINA_FALSE
            to unpause it. */
         }
      }
      wheel_disabled {
         set {
            /*@
            Enable or disable mouse wheel to be used to zoom in / out the map.

            Mouse wheel can be used for the user to zoom in or zoom out the map.

            It's disabled by default.

            @see elm_map_wheel_disabled_get()

            @ingroup Map */
         }
         get {
            /*@
            Get a value whether mouse wheel is enabled or not.

            @return @c EINA_TRUE means map is disabled. @c EINA_FALSE indicates
            it is enabled.

            Mouse wheel can be used for the user to zoom in or zoom out the map.

            @see elm_map_wheel_disabled_set() for details.

            @ingroup Map */
         }
         values {
            bool disabled; /*@ Use @c EINA_TRUE to disable mouse wheel or @c EINA_FALSE
            to enable it. */
         }
      }
      zoom_min {
         set {
            /*@
            Set the minimum zoom of the source.

            @see elm_map_zoom_min_get() for details.

            @ingroup Map */
         }
         get {
            /*@
            Get the minimum zoom of the source.

            @return Returns the minimum zoom of the source.

            @see elm_map_zoom_min_set() for details.

            @ingroup Map */
         }
         values {
            int zoom; /*@ New minimum zoom value to be used. */
         }
      }
      rotate {
         set {
            /*@
            Rotate the map.

            @see elm_map_rotate_get()

            @ingroup Map */
         }
         get {
            /*@
            Get the rotate degree of the map

            @see elm_map_rotate_set() to set map rotation.

            @ingroup Map */
         }
         values {
            double degree; /*@ Angle from 0.0 to 360.0 to rotate around Z axis. */
            Evas_Coord cx; /*@ Rotation's center horizontal position. */
            Evas_Coord cy; /*@ Rotation's center vertical position. */
         }
      }
      user_agent {
         set {
            /*@
            Set the user agent used by the map object to access routing services.

            User agent is a client application implementing a network protocol used
            in communications within a client–server distributed computing system

            The @p user_agent identification string will transmitted in a header
            field @c User-Agent.

            @see elm_map_user_agent_get()

            @ingroup Map */
         }
         get {
            /*@
            Get the user agent used by the map object.

            @return The user agent identification string used by the map.

            @see elm_map_user_agent_set() for details.

            @ingroup Map */
         }
         values {
            const(char)* user_agent; /*@ The user agent to be used by the map. */
         }
      }
      zoom_max {
         set {
            /*@
            Set the maximum zoom of the source.

            @see elm_map_zoom_max_get() for details.

            @ingroup Map */
         }
         get {
            /*@
            Get the maximum zoom of the source.

            @return Returns the maximum zoom of the source.

            @see elm_map_zoom_max_set() for details.

            @ingroup Map */
         }
         values {
            int zoom; /*@ New maximum zoom value to be used. */
         }
      }
      zoom_mode {
         set {
            /*@
            Set the zoom mode used by the map object.

            This sets the zoom mode to manual or one of the automatic levels.
            Manual (#ELM_MAP_ZOOM_MODE_MANUAL) means that zoom is set manually by
            elm_map_zoom_set() and will stay at that level until changed by code
            or until zoom mode is changed. This is the default mode.

            The Automatic modes will allow the map object to automatically
            adjust zoom mode based on properties. #ELM_MAP_ZOOM_MODE_AUTO_FIT will
            adjust zoom so the map fits inside the scroll frame with no pixels
            outside this area. #ELM_MAP_ZOOM_MODE_AUTO_FILL will be similar but
            ensure no pixels within the frame are left unfilled. Do not forget that
            the valid sizes are 2^zoom, consequently the map may be smaller than
            the scroller view.

            @see elm_map_zoom_set()

            @ingroup Map */
         }
         get {
            /*@
            Get the zoom mode used by the map object.

            @return The zoom mode of the map, being it one of #ELM_MAP_ZOOM_MODE_MANUAL
            (default), #ELM_MAP_ZOOM_MODE_AUTO_FIT, or #ELM_MAP_ZOOM_MODE_AUTO_FILL.

            This function returns the current zoom mode used by the map object.

            @see elm_map_zoom_mode_set() for more details.

            @ingroup Map */
         }
         values {
            Elm_Map_Zoom_Mode mode; /*@ The zoom mode of the map, being it one of #ELM_MAP_ZOOM_MODE_MANUAL
            (default), #ELM_MAP_ZOOM_MODE_AUTO_FIT, or #ELM_MAP_ZOOM_MODE_AUTO_FILL. */
         }
      }
      region {
         get {
            /*@
            Get the current geographic coordinates of the map.

            This gets the current center coordinates of the map object. It can be
            set by elm_map_region_bring_in() and elm_map_region_show().

            @see elm_map_region_bring_in()
            @see elm_map_region_show()

            @ingroup Map */
         }
         values {
            double lon; /*@ Pointer to store longitude. */
            double lat; /*@ Pointer to store latitude. */
         }
      }
      overlays {
         get {
            /*@
            Return all overlays in the map object.

            @return The list of all overlays or @c NULL upon failure.

            This list includes group overlays also.
            So this can be changed dynamically while zooming and panning.

            @since 1.7

            @ingroup Map */
            return Eina_List *;
         }
      }
      tile_load_status {
         get {
            /*@
            Get the information of tile load status.

            This gets the current tile loaded status for the map object.

            @ingroup Map */
         }
         values {
            int try_num; /*@ Pointer to store number of tiles download requested. */
            int finish_num; /*@ Pointer to store number of tiles successfully downloaded. */
         }
      }
   }
   methods {
      source_set {
         /*@
         Set the current source of the map for a specific type.

         Map widget retrieves tile images that composes the map from a web service.
         This web service can be set with this method
         for ELM_MAP_SOURCE_TYPE_TILE type.
         A different service can return a different maps with different
         information and it can use different zoom values.

         Map widget provides route data based on a external web service.
         This web service can be set with this method
         for ELM_MAP_SOURCE_TYPE_ROUTE type.

         Map widget also provide geoname data based on a external web service.
         This web service can be set with this method
         for ELM_MAP_SOURCE_TYPE_NAME type.

         The @p source_name need to match one of the names provided by
         elm_map_sources_get().

         The current source can be get using elm_map_source_get().

         @see elm_map_sources_get()
         @see elm_map_source_get()

         @ingroup Map */

         params {
            @in Elm_Map_Source_Type type; /*@ source type. */
            @in const(char)* source_name; /*@ The source to be used. */
         }
      }
      source_get @const {
         /*@
         Get the name of currently used source for a specific type.

         @return Returns the name of the source in use.

         @see elm_map_sources_get()
         @see elm_map_source_set()

         @ingroup Map */
         return const(char)*;
         params {
            @in Elm_Map_Source_Type type; /*@ source type. */
         }
      }
      route_add {
         /*@
         Add a new route to the map object.

         @return The created route or @c NULL upon failure.

         A route will be traced by point on coordinates (@p flat, @p flon)
         to point on coordinates (@p tlat, @p tlon), using the route service
         set with elm_map_source_set().

         It will take @p type on consideration to define the route,
         depending if the user will be walking or driving, the route may vary.
         One of #ELM_MAP_ROUTE_TYPE_MOTOCAR, #ELM_MAP_ROUTE_TYPE_BICYCLE,
         or #ELM_MAP_ROUTE_TYPE_FOOT need to be used.

         Another parameter is what the route should prioritize, the minor distance
         or the less time to be spend on the route. So @p method should be one
         of #ELM_MAP_ROUTE_METHOD_SHORTEST or #ELM_MAP_ROUTE_METHOD_FASTEST.

         Routes created with this method can be deleted with
         elm_map_route_del(),
         and distance can be get with elm_map_route_distance_get().

         @see elm_map_route_del()
         @see elm_map_route_distance_get()
         @see elm_map_source_set()

         @ingroup Map */

         return Elm_Map_Route *;
         params {
            @in Elm_Map_Route_Type type; /*@ The type of transport to be considered when tracing a route. */
            @in Elm_Map_Route_Method method; /*@ The routing method, what should be prioritized. */
            @in double flon; /*@ The start longitude. */
            @in double flat; /*@ The start latitude. */
            @in double tlon; /*@ The destination longitude. */
            @in double tlat; /*@ The destination latitude. */
            @in Elm_Map_Route_Cb route_cb; /*@ The route to be traced. */
            @in void *data; /*@ A pointer of user data. */
         }
      }
      track_add {
         /*@
         Add a track on the map

         @return The route object. This is an elm object of type Route.

         @see elm_route_add() for details.

         @ingroup Map */

         return Evas_Object *;
         params {
            @in void *emap; /*@ The emap route object. */
         }
      }
      region_to_canvas_convert @const {
         /*@
         Convert geographic coordinates (longitude, latitude)
         into canvas coordinates.

         This gets canvas x, y coordinates from longitude and latitude. The canvas
         coordinates mean x, y coordinate from current viewport.

         see elm_map_canvas_to_region_convert()

         @ingroup Map */
         params {
            @in double lon; /*@ The longitude to convert. */
            @in double lat; /*@ The latitude to convert. */
            @out Evas_Coord x; /*@ A pointer to horizontal coordinate. */
            @out Evas_Coord y; /*@ A pointer to vertical coordinate. */
         }
      }
      overlay_circle_add {
         /*@
         Add a new circle overlay to the map object.
         This overlay has a circle type.

         @return The created overlay or @c NULL upon failure.

         Overlay created with this method can be deleted with elm_map_overlay_del().

         @see elm_map_overlay_del()

         @ingroup Map */

         return Elm_Map_Overlay *;
         params {
            @in double lon; /*@ The center longitude. */
            @in double lat; /*@ The center latitude. */
            @in double radius; /*@ The pixel length of radius. */
         }
      }
      overlay_class_add {
         /*@
         Add a new class overlay to the map object.
         This overlay has a class type.

         @return The created overlay or @c NULL upon failure.

         This overlay is not shown before overlay members are appended.
         if overlay members in the same class are close, group overlays
         are created. If they are far away, group overlays are hidden.
         When group overlays are shown, they have default style layouts at first.

         You can change the state (hidden, paused, etc.) or set the content
         or icon of the group overlays by chaning the state of the class overlay.
         Do not modify the group overlay itself.

         Also these changes have a influence on the overlays in the same class
         even if each overlay is alone and is not grouped.

         @see elm_map_overlay_del()
         @see elm_map_overlay_add()
         @see elm_map_overlay_bubble_add()

         @ingroup Map */

         return Elm_Map_Overlay *;
      }
      overlay_bubble_add {
         /*@
         Add a new bubble overlay to the map object.
         This overlay has a bubble type.

         @return The created overlay or @c NULL upon failure.

         A bubble will not be displayed before geographic coordinates are set or
         any other overlays are followed.

         This overlay has a bubble style layout and icon or content can not
         be set.

         Overlay created with this method can be deleted with elm_map_overlay_del().

         @see elm_map_overlay_del()
         @see elm_map_overlay_add()
         @see elm_map_overlay_class_add()
         @see elm_map_overlay_region_set()
         @see elm_map_overlay_bubble_follow()

         @ingroup Map */

         return Elm_Map_Overlay *;
      }
      sources_get @const {
         /*@
         Get the names of available sources for a specific type.

         @return The char pointer array of source names.

         It will provide a list with all available sources.
         Current source can be set by elm_map_source_set(), or get with
         elm_map_source_get().

         At least available sources of tile type:
         @li "Mapnik"
         @li "Osmarender"
         @li "CycleMap"
         @li "Maplint"

         At least available sources of route type:
         @li "Yours"

         At least available sources of name type:
         @li "Nominatim"

         @see elm_map_source_set()
         @see elm_map_source_get()

         @ingroup Map */
         return const(char)**;
         params {
            @in Elm_Map_Source_Type type; /*@ source type. */
         }
      }
      overlay_polygon_add {
         /*@
         Add a new polygon overlay to the map object.
         This overlay has a polygon type.

         @return The created overlay or @c NULL upon failure.

         At least 3 regions should be added to show the polygon overlay.

         Overlay created with this method can be deleted with elm_map_overlay_del().

         @see elm_map_overlay_polygon_region_add()
         @see elm_map_overlay_del()

         @ingroup Map */

         return Elm_Map_Overlay *;
      }
      overlay_line_add {
         /*@
         Add a new line overlay to the map object.
         This overlay has a line type.

         @return The created overlay or @c NULL upon failure.

         Overlay created with this method can be deleted with elm_map_overlay_del().

         @see elm_map_overlay_del()

         @ingroup Map */

         return Elm_Map_Overlay *;
         params {
            @in double flon; /*@ The start longitude. */
            @in double flat; /*@ The start latitude. */
            @in double tlon; /*@ The destination longitude. */
            @in double tlat; /*@ The destination latitude. */
         }
      }
      region_show {
         /*@
         Show the given coordinates at the center of the map, @b immediately.

         This causes map to @b redraw its viewport's contents to the
         region containing the given @p lat and @p lon, that will be moved to the
         center of the map.

         @see elm_map_region_bring_in() for a function to move with animation.
         @see elm_map_region_get()

         @ingroup Map */

         params {
            @in double lon; /*@ Longitude to center at. */
            @in double lat; /*@ Latitude to center at. */
         }
      }
      name_add @const {
         /*@
         Request a address or geographic coordinates(longitude, latitude)
         from a given address or geographic coordinate(longitude, latitude).

         @return name A #Elm_Map_Name handle for this coordinate.

         If you want to get address from geographic coordinates, set input @p address
         as @c NULL and set @p lon, @p lat as you want to convert.
         If address is set except NULL, @p lon and @p lat are checked.

         To get the string for this address, elm_map_name_address_get()
         should be used after callback or "name,loaded" signal is called.

         To get the longitude and latitude, elm_map_name_region_get()
         should be used.

         @ingroup Map */
         return Elm_Map_Name *;
         params {
            @in const(char)* address; /*@ The address. */
            @in double lon; /*@ The longitude. */
            @in double lat; /*@ The latitude. */
            @in Elm_Map_Name_Cb name_cb; /*@ The callback function. */
            @in void *data; /*@ The user callback data. */
         }
      }
      name_search @const {
         /*@
         @brief Requests a list of addresses corresponding to a given name.

         @since 1.8

         @remarks This is used if you want to search the address from a name.

         @internal
         @ingroup Map */
         params {
            @in const(char)* address; /*@ The address. */
            @in Elm_Map_Name_List_Cb name_cb; /*@ The callback function. */
            @in void *data; /*@ The user callback data. */
         }
      }
      region_bring_in {
         /*@
         Animatedly bring in given coordinates to the center of the map.

         This causes map to jump to the given @p lat and @p lon coordinates
         and show it (by scrolling) in the center of the viewport, if it is not
         already centered. This will use animation to do so and take a period
         of time to complete.

         @see elm_map_region_show() for a function to avoid animation.
         @see elm_map_region_get()

         @ingroup Map */

         params {
            @in double lon; /*@ Longitude to center at. */
            @in double lat; /*@ Latitude to center at. */
         }
      }
      region_zoom_bring_in {
         /*@
         Animatedly set the zoom level of the map and bring in given coordinates
         to the center of the map.

         This causes map to zoom into specific zoom level and also move to the
         given @p lat and @p lon coordinates and show it (by scrolling) in the
         center of the viewport concurrently.

         @since 1.11

         @see elm_map_region_bring_in()
         @see elm_map_zoom_set()

         @ingroup Map */

         params {
            @in int zoom;   /*@ The zoom level to set. */
            @in double lon; /*@ Longitude to center at. */
            @in double lat; /*@ Latitude to center at. */
         }
      }
      track_remove {
         /*@
         Remove a track from the map

         @ingroup Map */

         params {
            @in Evas_Object *route; /*@ The track to remove. */
         }
      }
      overlay_route_add {
         /*@
         Add a new route overlay to the map object.
         This overlay has a route type.

         @return The created overlay or @c NULL upon failure.

         This overlay has a route style layout and icon or content can not
         be set.

         The color scheme can be changed by elm_map_overlay_content_set().

         Overlay created with this method can be deleted with elm_map_overlay_del().

         @see elm_map_overlay_del()
         @see elm_map_overlay_class_add()
         @see elm_map_overlay_content_set()
         @see elm_map_overlay_content_get()

         @ingroup Map */

         return Elm_Map_Overlay *;
         params {
            @in const(Elm_Map_Route)* route; /*@ The route object to make a overlay. */
         }
      }
      overlay_scale_add {
         /*@
         Add a new scale overlay to the map object.
         This overlay has a scale type.

         @return The created overlay or @c NULL upon failure.

         The scale overlay shows the ratio of a distance on the map to the corresponding distance.

         Overlay created with this method can be deleted with elm_map_overlay_del().

         @see elm_map_overlay_del()

         @ingroup Map */

         return Elm_Map_Overlay *;
         params {
            @in Evas_Coord x; /*@ horizontal pixel coordinate. */
            @in Evas_Coord y; /*@ vertical pixel coordinate */
         }
      }
      overlay_add {
         /*@
         Add a new overlay to the map object. This overlay has a default type.

         @return The created overlay or @c NULL upon failure.

         A overlay will be created and shown in a specific point of the map, defined
         by @p lon and @p lat.

         The created overlay has a default style layout before content or
         icon is set.
         If content or icon is set, those are displayed instead of default style
         layout.
         You can set by using elm_map_overlay_content_set() or
         elm_map_overlay_icon_set(). If NULL is set, default style
         is shown again.

         Overlay created with this method can be deleted by elm_map_overlay_del().

         @see elm_map_overlay_del()
         @see elm_map_overlay_class_add()
         @see elm_map_overlay_bubble_add()
         @see elm_map_overlay_content_set()
         @see elm_map_overlay_icon_set()

         @ingroup Map */

         return Elm_Map_Overlay *;
         params {
            @in double lon; /*@ The longitude of the overlay. */
            @in double lat; /*@ The latitude of the overlay. */
         }
      }
      canvas_to_region_convert @const {
         /*@
         Convert canvas coordinates into geographic coordinates
         (longitude, latitude).

         This gets longitude and latitude from canvas x, y coordinates. The canvas
         coordinates mean x, y coordinate from current viewport.

         see elm_map_region_to_canvas_convert()

         @ingroup Map */
         params {
            @in Evas_Coord x; /*@ horizontal coordinate of the point to convert. */
            @in Evas_Coord y; /*@ vertical coordinate of the point to convert. */
            @out double lon; /*@ A pointer to the longitude. */
            @out double lat; /*@ A pointer to the latitude. */
         }
      }
   }
   implements {
      class.constructor;
      Eo.Base.constructor;
      Evas.Object_Smart.move;
      Evas.Object_Smart.add;
      Evas.Object_Smart.del;
      Evas.Object_Smart.member_add;
      Evas.Object_Smart.resize;
      Elm_Widget.theme_apply;
      Elm_Widget.on_focus;
      Elm_Widget.event;
      Elm_Interface_Atspi_Widget_Action.elm_actions.get;
   }
   events {
      clicked;
      clicked,double;
      press;
      longpressed;
      scroll;
      scroll,drag,start;
      scroll,drag,stop;
      scroll,anim,start;
      scroll,anim,stop;
      zoom,start;
      zoom,stop;
      zoom,change;
      loaded;
      tile,load;
      tile,loaded;
      tile,loaded,fail;
      route,load;
      route,loaded;
      route,loaded,fail;
      name,load;
      name,loaded;
      name,loaded,fail;
      overlay,clicked;
      overlay,del;
      language,changed;
      access,changed;
      focused;
      unfocused;
   }

}