This file is indexed.

/usr/share/gtk-doc/html/libchamplain-0.12/ix01.html is in libchamplain-doc 0.12.13-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Index: libchamplain Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" href="index.html" title="libchamplain Reference Manual">
<link rel="up" href="index.html" title="libchamplain Reference Manual">
<link rel="prev" href="annotation-glossary.html" title="Annotation Glossary">
<link rel="next" href="ix02.html" title="Index of deprecated symbols">
<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
<td width="100%" align="left" class="shortcuts"></td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
<td><a accesskey="p" href="annotation-glossary.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
<td><a accesskey="n" href="ix02.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
</tr></table>
<div class="index">
<div class="titlepage"><div><div><h1 class="title">
<a name="id-1.9"></a>Index</h1></div></div></div>
<div xmlns:xlink="http://www.w3.org/1999/xlink" class="index">
<div class="indexdiv">
<h3>B</h3>
<dl>
<dt id="ientry-idp67576192">ChamplainBoundingBox, <a class="indexterm" href="ChamplainBoundingBox.html#ChamplainBoundingBox-struct">struct ChamplainBoundingBox</a>
</dt>
<dt id="ientry-idp67481536">champlain_bounding_box_compose, <a class="indexterm" href="ChamplainBoundingBox.html#champlain-bounding-box-compose">champlain_bounding_box_compose ()</a>
</dt>
<dt id="ientry-idp67415040">champlain_bounding_box_copy, <a class="indexterm" href="ChamplainBoundingBox.html#champlain-bounding-box-copy">champlain_bounding_box_copy ()</a>
</dt>
<dt id="ientry-idp67548304">champlain_bounding_box_covers, <a class="indexterm" href="ChamplainBoundingBox.html#champlain-bounding-box-covers">champlain_bounding_box_covers ()</a>
</dt>
<dt id="ientry-idp67504016">champlain_bounding_box_extend, <a class="indexterm" href="ChamplainBoundingBox.html#champlain-bounding-box-extend">champlain_bounding_box_extend ()</a>
</dt>
<dt id="ientry-idp67435040">champlain_bounding_box_free, <a class="indexterm" href="ChamplainBoundingBox.html#champlain-bounding-box-free">champlain_bounding_box_free ()</a>
</dt>
<dt id="ientry-idp67453888">champlain_bounding_box_get_center, <a class="indexterm" href="ChamplainBoundingBox.html#champlain-bounding-box-get-center">champlain_bounding_box_get_center ()</a>
</dt>
<dt id="ientry-idp67529616">champlain_bounding_box_is_valid, <a class="indexterm" href="ChamplainBoundingBox.html#champlain-bounding-box-is-valid">champlain_bounding_box_is_valid ()</a>
</dt>
<dt id="ientry-idp66185872">champlain_bounding_box_new, <a class="indexterm" href="ChamplainBoundingBox.html#champlain-bounding-box-new">champlain_bounding_box_new ()</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>C</h3>
<dl>
<dt id="ientry-idp66266784">CHAMPLAIN_CHECK_VERSION, <a class="indexterm" href="libchamplain-ChamplainVersion.html#CHAMPLAIN-CHECK-VERSION:CAPS">CHAMPLAIN_CHECK_VERSION()</a>
</dt>
<dt id="ientry-idp62365040">ChamplainCoordinate, <a class="indexterm" href="ChamplainCoordinate.html#ChamplainCoordinate-struct">struct ChamplainCoordinate</a>
</dt>
<dt id="ientry-idp58782400">champlain_coordinate_new, <a class="indexterm" href="ChamplainCoordinate.html#champlain-coordinate-new">champlain_coordinate_new ()</a>
</dt>
<dt id="ientry-idp62722448">champlain_coordinate_new_full, <a class="indexterm" href="ChamplainCoordinate.html#champlain-coordinate-new-full">champlain_coordinate_new_full ()</a>
</dt>
<dt id="ientry-idp59371424">ChamplainCustomMarker, <a class="indexterm" href="ChamplainCustomMarker.html#ChamplainCustomMarker-struct">struct ChamplainCustomMarker</a>, <a class="indexterm" href="ChamplainCustomMarker.html#ChamplainCustomMarker-struct">struct ChamplainCustomMarker</a>
</dt>
<dt id="ientry-idp59352784">champlain_custom_marker_new, <a class="indexterm" href="ChamplainCustomMarker.html#champlain-custom-marker-new">champlain_custom_marker_new ()</a>, <a class="indexterm" href="ChamplainCustomMarker.html#champlain-custom-marker-new">champlain_custom_marker_new ()</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>E</h3>
<dl>
<dt id="ientry-idp65731728">ChamplainErrorTileRenderer, <a class="indexterm" href="ChamplainErrorTileRenderer.html#ChamplainErrorTileRenderer-struct">struct ChamplainErrorTileRenderer</a>
</dt>
<dt id="ientry-idp65740640">ChamplainErrorTileRenderer:tile-size, <a class="indexterm" href="ChamplainErrorTileRenderer.html#ChamplainErrorTileRenderer--tile-size">The “tile-size” property</a>
</dt>
<dt id="ientry-idp65712368">champlain_error_tile_renderer_get_tile_size, <a class="indexterm" href="ChamplainErrorTileRenderer.html#champlain-error-tile-renderer-get-tile-size">champlain_error_tile_renderer_get_tile_size ()</a>
</dt>
<dt id="ientry-idp66874448">champlain_error_tile_renderer_new, <a class="indexterm" href="ChamplainErrorTileRenderer.html#champlain-error-tile-renderer-new">champlain_error_tile_renderer_new ()</a>
</dt>
<dt id="ientry-idp65692208">champlain_error_tile_renderer_set_tile_size, <a class="indexterm" href="ChamplainErrorTileRenderer.html#champlain-error-tile-renderer-set-tile-size">champlain_error_tile_renderer_set_tile_size ()</a>
</dt>
<dt id="ientry-idp67703296">ChamplainExportable, <a class="indexterm" href="ChamplainExportable.html#ChamplainExportable-struct">ChamplainExportable</a>
</dt>
<dt id="ientry-idp67728016">ChamplainExportable:surface, <a class="indexterm" href="ChamplainExportable.html#ChamplainExportable--surface">The “surface” property</a>
</dt>
<dt id="ientry-idp67708400">ChamplainExportableIface, <a class="indexterm" href="ChamplainExportable.html#ChamplainExportableIface">struct ChamplainExportableIface</a>
</dt>
<dt id="ientry-idp66344192">champlain_exportable_get_surface, <a class="indexterm" href="ChamplainExportable.html#champlain-exportable-get-surface">champlain_exportable_get_surface ()</a>
</dt>
<dt id="ientry-idp67162656">champlain_exportable_set_surface, <a class="indexterm" href="ChamplainExportable.html#champlain-exportable-set-surface">champlain_exportable_set_surface ()</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>F</h3>
<dl>
<dt id="ientry-idp65591872">ChamplainFileCache, <a class="indexterm" href="ChamplainFileCache.html#ChamplainFileCache-struct">struct ChamplainFileCache</a>
</dt>
<dt id="ientry-idp65600832">ChamplainFileCache:cache-dir, <a class="indexterm" href="ChamplainFileCache.html#ChamplainFileCache--cache-dir">The “cache-dir” property</a>
</dt>
<dt id="ientry-idp65608624">ChamplainFileCache:size-limit, <a class="indexterm" href="ChamplainFileCache.html#ChamplainFileCache--size-limit">The “size-limit” property</a>
</dt>
<dt id="ientry-idp61424912">ChamplainFileTileSource, <a class="indexterm" href="ChamplainFileTileSource.html#ChamplainFileTileSource-struct">struct ChamplainFileTileSource</a>
</dt>
<dt id="ientry-idp65538960">champlain_file_cache_get_cache_dir, <a class="indexterm" href="ChamplainFileCache.html#champlain-file-cache-get-cache-dir">champlain_file_cache_get_cache_dir ()</a>
</dt>
<dt id="ientry-idp65520896">champlain_file_cache_get_size_limit, <a class="indexterm" href="ChamplainFileCache.html#champlain-file-cache-get-size-limit">champlain_file_cache_get_size_limit ()</a>
</dt>
<dt id="ientry-idp65471824">champlain_file_cache_new_full, <a class="indexterm" href="ChamplainFileCache.html#champlain-file-cache-new-full">champlain_file_cache_new_full ()</a>
</dt>
<dt id="ientry-idp65557088">champlain_file_cache_purge, <a class="indexterm" href="ChamplainFileCache.html#champlain-file-cache-purge">champlain_file_cache_purge ()</a>
</dt>
<dt id="ientry-idp65573632">champlain_file_cache_purge_on_idle, <a class="indexterm" href="ChamplainFileCache.html#champlain-file-cache-purge-on-idle">champlain_file_cache_purge_on_idle ()</a>
</dt>
<dt id="ientry-idp65500464">champlain_file_cache_set_size_limit, <a class="indexterm" href="ChamplainFileCache.html#champlain-file-cache-set-size-limit">champlain_file_cache_set_size_limit ()</a>
</dt>
<dt id="ientry-idp61403008">champlain_file_tile_source_load_map_data, <a class="indexterm" href="ChamplainFileTileSource.html#champlain-file-tile-source-load-map-data">champlain_file_tile_source_load_map_data ()</a>
</dt>
<dt id="ientry-idp63893952">champlain_file_tile_source_new_full, <a class="indexterm" href="ChamplainFileTileSource.html#champlain-file-tile-source-new-full">champlain_file_tile_source_new_full ()</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>I</h3>
<dl>
<dt id="ientry-idp65862608">ChamplainImageRenderer, <a class="indexterm" href="ChamplainImageRenderer.html#ChamplainImageRenderer-struct">struct ChamplainImageRenderer</a>
</dt>
<dt id="ientry-idp65828720">champlain_image_renderer_new, <a class="indexterm" href="ChamplainImageRenderer.html#champlain-image-renderer-new">champlain_image_renderer_new ()</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>L</h3>
<dl>
<dt id="ientry-idp63228544">ChamplainLabel, <a class="indexterm" href="ChamplainLabel.html#ChamplainLabel-struct">struct ChamplainLabel</a>
</dt>
<dt id="ientry-idp63237776">ChamplainLabel:alignment, <a class="indexterm" href="ChamplainLabel.html#ChamplainLabel--alignment">The “alignment” property</a>
</dt>
<dt id="ientry-idp63245488">ChamplainLabel:color, <a class="indexterm" href="ChamplainLabel.html#ChamplainLabel--color">The “color” property</a>
</dt>
<dt id="ientry-idp63252928">ChamplainLabel:draw-background, <a class="indexterm" href="ChamplainLabel.html#ChamplainLabel--draw-background">The “draw-background” property</a>
</dt>
<dt id="ientry-idp63260720">ChamplainLabel:draw-shadow, <a class="indexterm" href="ChamplainLabel.html#ChamplainLabel--draw-shadow">The “draw-shadow” property</a>
</dt>
<dt id="ientry-idp63268512">ChamplainLabel:ellipsize, <a class="indexterm" href="ChamplainLabel.html#ChamplainLabel--ellipsize">The “ellipsize” property</a>
</dt>
<dt id="ientry-idp63276320">ChamplainLabel:font-name, <a class="indexterm" href="ChamplainLabel.html#ChamplainLabel--font-name">The “font-name” property</a>
</dt>
<dt id="ientry-idp63284208">ChamplainLabel:image, <a class="indexterm" href="ChamplainLabel.html#ChamplainLabel--image">The “image” property</a>
</dt>
<dt id="ientry-idp63291648">ChamplainLabel:single-line-mode, <a class="indexterm" href="ChamplainLabel.html#ChamplainLabel--single-line-mode">The “single-line-mode” property</a>
</dt>
<dt id="ientry-idp63299360">ChamplainLabel:text, <a class="indexterm" href="ChamplainLabel.html#ChamplainLabel--text">The “text” property</a>
</dt>
<dt id="ientry-idp63307312">ChamplainLabel:text-color, <a class="indexterm" href="ChamplainLabel.html#ChamplainLabel--text-color">The “text-color” property</a>
</dt>
<dt id="ientry-idp63314800">ChamplainLabel:use-markup, <a class="indexterm" href="ChamplainLabel.html#ChamplainLabel--use-markup">The “use-markup” property</a>
</dt>
<dt id="ientry-idp63322512">ChamplainLabel:wrap, <a class="indexterm" href="ChamplainLabel.html#ChamplainLabel--wrap">The “wrap” property</a>
</dt>
<dt id="ientry-idp63330320">ChamplainLabel:wrap-mode, <a class="indexterm" href="ChamplainLabel.html#ChamplainLabel--wrap-mode">The “wrap-mode” property</a>
</dt>
<dt id="ientry-idp63050736">champlain_label_get_alignment, <a class="indexterm" href="ChamplainLabel.html#champlain-label-get-alignment">champlain_label_get_alignment ()</a>
</dt>
<dt id="ientry-idp63192992">champlain_label_get_attributes, <a class="indexterm" href="ChamplainLabel.html#champlain-label-get-attributes">champlain_label_get_attributes ()</a>
</dt>
<dt id="ientry-idp63066528">champlain_label_get_color, <a class="indexterm" href="ChamplainLabel.html#champlain-label-get-color">champlain_label_get_color ()</a>
</dt>
<dt id="ientry-idp63177200">champlain_label_get_draw_background, <a class="indexterm" href="ChamplainLabel.html#champlain-label-get-draw-background">champlain_label_get_draw_background ()</a>
</dt>
<dt id="ientry-idp63208784">champlain_label_get_draw_shadow, <a class="indexterm" href="ChamplainLabel.html#champlain-label-get-draw-shadow">champlain_label_get_draw_shadow ()</a>
</dt>
<dt id="ientry-idp63145616">champlain_label_get_ellipsize, <a class="indexterm" href="ChamplainLabel.html#champlain-label-get-ellipsize">champlain_label_get_ellipsize ()</a>
</dt>
<dt id="ientry-idp63098112">champlain_label_get_font_name, <a class="indexterm" href="ChamplainLabel.html#champlain-label-get-font-name">champlain_label_get_font_name ()</a>
</dt>
<dt id="ientry-idp63033808">champlain_label_get_image, <a class="indexterm" href="ChamplainLabel.html#champlain-label-get-image">champlain_label_get_image ()</a>
</dt>
<dt id="ientry-idp63161408">champlain_label_get_single_line_mode, <a class="indexterm" href="ChamplainLabel.html#champlain-label-get-single-line-mode">champlain_label_get_single_line_mode ()</a>
</dt>
<dt id="ientry-idp63017888">champlain_label_get_text, <a class="indexterm" href="ChamplainLabel.html#champlain-label-get-text">champlain_label_get_text ()</a>
</dt>
<dt id="ientry-idp63082320">champlain_label_get_text_color, <a class="indexterm" href="ChamplainLabel.html#champlain-label-get-text-color">champlain_label_get_text_color ()</a>
</dt>
<dt id="ientry-idp63002096">champlain_label_get_use_markup, <a class="indexterm" href="ChamplainLabel.html#champlain-label-get-use-markup">champlain_label_get_use_markup ()</a>
</dt>
<dt id="ientry-idp63114032">champlain_label_get_wrap, <a class="indexterm" href="ChamplainLabel.html#champlain-label-get-wrap">champlain_label_get_wrap ()</a>
</dt>
<dt id="ientry-idp63129824">champlain_label_get_wrap_mode, <a class="indexterm" href="ChamplainLabel.html#champlain-label-get-wrap-mode">champlain_label_get_wrap_mode ()</a>
</dt>
<dt id="ientry-idp62246784">champlain_label_new, <a class="indexterm" href="ChamplainLabel.html#champlain-label-new">champlain_label_new ()</a>
</dt>
<dt id="ientry-idp62313552">champlain_label_new_from_file, <a class="indexterm" href="ChamplainLabel.html#champlain-label-new-from-file">champlain_label_new_from_file ()</a>
</dt>
<dt id="ientry-idp62336592">champlain_label_new_full, <a class="indexterm" href="ChamplainLabel.html#champlain-label-new-full">champlain_label_new_full ()</a>
</dt>
<dt id="ientry-idp62293808">champlain_label_new_with_image, <a class="indexterm" href="ChamplainLabel.html#champlain-label-new-with-image">champlain_label_new_with_image ()</a>
</dt>
<dt id="ientry-idp62258320">champlain_label_new_with_text, <a class="indexterm" href="ChamplainLabel.html#champlain-label-new-with-text">champlain_label_new_with_text ()</a>
</dt>
<dt id="ientry-idp62801888">champlain_label_set_alignment, <a class="indexterm" href="ChamplainLabel.html#champlain-label-set-alignment">champlain_label_set_alignment ()</a>
</dt>
<dt id="ientry-idp62912576">champlain_label_set_attributes, <a class="indexterm" href="ChamplainLabel.html#champlain-label-set-attributes">champlain_label_set_attributes ()</a>
</dt>
<dt id="ientry-idp62819792">champlain_label_set_color, <a class="indexterm" href="ChamplainLabel.html#champlain-label-set-color">champlain_label_set_color ()</a>
</dt>
<dt id="ientry-idp62966288">champlain_label_set_draw_background, <a class="indexterm" href="ChamplainLabel.html#champlain-label-set-draw-background">champlain_label_set_draw_background ()</a>
</dt>
<dt id="ientry-idp62984192">champlain_label_set_draw_shadow, <a class="indexterm" href="ChamplainLabel.html#champlain-label-set-draw-shadow">champlain_label_set_draw_shadow ()</a>
</dt>
<dt id="ientry-idp62948384">champlain_label_set_ellipsize, <a class="indexterm" href="ChamplainLabel.html#champlain-label-set-ellipsize">champlain_label_set_ellipsize ()</a>
</dt>
<dt id="ientry-idp62857856">champlain_label_set_font_name, <a class="indexterm" href="ChamplainLabel.html#champlain-label-set-font-name">champlain_label_set_font_name ()</a>
</dt>
<dt id="ientry-idp62764576">champlain_label_set_image, <a class="indexterm" href="ChamplainLabel.html#champlain-label-set-image">champlain_label_set_image ()</a>
</dt>
<dt id="ientry-idp62930480">champlain_label_set_single_line_mode, <a class="indexterm" href="ChamplainLabel.html#champlain-label-set-single-line-mode">champlain_label_set_single_line_mode ()</a>
</dt>
<dt id="ientry-idp62746544">champlain_label_set_text, <a class="indexterm" href="ChamplainLabel.html#champlain-label-set-text">champlain_label_set_text ()</a>
</dt>
<dt id="ientry-idp62838832">champlain_label_set_text_color, <a class="indexterm" href="ChamplainLabel.html#champlain-label-set-text-color">champlain_label_set_text_color ()</a>
</dt>
<dt id="ientry-idp62783984">champlain_label_set_use_markup, <a class="indexterm" href="ChamplainLabel.html#champlain-label-set-use-markup">champlain_label_set_use_markup ()</a>
</dt>
<dt id="ientry-idp62876768">champlain_label_set_wrap, <a class="indexterm" href="ChamplainLabel.html#champlain-label-set-wrap">champlain_label_set_wrap ()</a>
</dt>
<dt id="ientry-idp62894672">champlain_label_set_wrap_mode, <a class="indexterm" href="ChamplainLabel.html#champlain-label-set-wrap-mode">champlain_label_set_wrap_mode ()</a>
</dt>
<dt id="ientry-idp56743136">ChamplainLayer, <a class="indexterm" href="ChamplainLayer.html#ChamplainLayer-struct">struct ChamplainLayer</a>
</dt>
<dt id="ientry-idp56723632">champlain_layer_get_bounding_box, <a class="indexterm" href="ChamplainLayer.html#champlain-layer-get-bounding-box">champlain_layer_get_bounding_box ()</a>
</dt>
<dt id="ientry-idp55743776">champlain_layer_set_view, <a class="indexterm" href="ChamplainLayer.html#champlain-layer-set-view">champlain_layer_set_view ()</a>
</dt>
<dt id="ientry-idp62511968">ChamplainLicense, <a class="indexterm" href="ChamplainLicense.html#ChamplainLicense-struct">struct ChamplainLicense</a>
</dt>
<dt id="ientry-idp62520864">ChamplainLicense:alignment, <a class="indexterm" href="ChamplainLicense.html#ChamplainLicense--alignment">The “alignment” property</a>
</dt>
<dt id="ientry-idp62528528">ChamplainLicense:extra-text, <a class="indexterm" href="ChamplainLicense.html#ChamplainLicense--extra-text">The “extra-text” property</a>
</dt>
<dt id="ientry-idp62472288">champlain_license_connect_view, <a class="indexterm" href="ChamplainLicense.html#champlain-license-connect-view">champlain_license_connect_view ()</a>
</dt>
<dt id="ientry-idp62493456">champlain_license_disconnect_view, <a class="indexterm" href="ChamplainLicense.html#champlain-license-disconnect-view">champlain_license_disconnect_view ()</a>
</dt>
<dt id="ientry-idp62454912">champlain_license_get_alignment, <a class="indexterm" href="ChamplainLicense.html#champlain-license-get-alignment">champlain_license_get_alignment ()</a>
</dt>
<dt id="ientry-idp62416272">champlain_license_get_extra_text, <a class="indexterm" href="ChamplainLicense.html#champlain-license-get-extra-text">champlain_license_get_extra_text ()</a>
</dt>
<dt id="ientry-idp62384864">champlain_license_new, <a class="indexterm" href="ChamplainLicense.html#champlain-license-new">champlain_license_new ()</a>
</dt>
<dt id="ientry-idp62434496">champlain_license_set_alignment, <a class="indexterm" href="ChamplainLicense.html#champlain-license-set-alignment">champlain_license_set_alignment ()</a>
</dt>
<dt id="ientry-idp62395584">champlain_license_set_extra_text, <a class="indexterm" href="ChamplainLicense.html#champlain-license-set-extra-text">champlain_license_set_extra_text ()</a>
</dt>
<dt id="ientry-idp61911776">ChamplainLocation, <a class="indexterm" href="ChamplainLocation.html#ChamplainLocation-struct">ChamplainLocation</a>
</dt>
<dt id="ientry-idp62704224">ChamplainLocation:latitude, <a class="indexterm" href="ChamplainLocation.html#ChamplainLocation--latitude">The “latitude” property</a>
</dt>
<dt id="ientry-idp62712336">ChamplainLocation:longitude, <a class="indexterm" href="ChamplainLocation.html#ChamplainLocation--longitude">The “longitude” property</a>
</dt>
<dt id="ientry-idp61916000">ChamplainLocationIface, <a class="indexterm" href="ChamplainLocation.html#ChamplainLocationIface">struct ChamplainLocationIface</a>
</dt>
<dt id="ientry-idp61859584">champlain_location_get_latitude, <a class="indexterm" href="ChamplainLocation.html#champlain-location-get-latitude">champlain_location_get_latitude ()</a>
</dt>
<dt id="ientry-idp61892176">champlain_location_get_longitude, <a class="indexterm" href="ChamplainLocation.html#champlain-location-get-longitude">champlain_location_get_longitude ()</a>
</dt>
<dt id="ientry-idp55170944">champlain_location_set_location, <a class="indexterm" href="ChamplainLocation.html#champlain-location-set-location">champlain_location_set_location ()</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>M</h3>
<dl>
<dt id="ientry-idp67131440">CHAMPLAIN_MAJOR_VERSION, <a class="indexterm" href="libchamplain-ChamplainVersion.html#CHAMPLAIN-MAJOR-VERSION:CAPS">CHAMPLAIN_MAJOR_VERSION</a>
</dt>
<dt id="ientry-idp64548720">ChamplainMapProjection, <a class="indexterm" href="ChamplainMapSource.html#ChamplainMapProjection">enum ChamplainMapProjection</a>
</dt>
<dt id="ientry-idp64542912">ChamplainMapSource, <a class="indexterm" href="ChamplainMapSource.html#ChamplainMapSource-struct">struct ChamplainMapSource</a>
</dt>
<dt id="ientry-idp64561136">ChamplainMapSource:next-source, <a class="indexterm" href="ChamplainMapSource.html#ChamplainMapSource--next-source">The “next-source” property</a>
</dt>
<dt id="ientry-idp64567488">ChamplainMapSource:renderer, <a class="indexterm" href="ChamplainMapSource.html#ChamplainMapSource--renderer">The “renderer” property</a>
</dt>
<dt id="ientry-idp65149408">ChamplainMapSourceChain, <a class="indexterm" href="ChamplainMapSourceChain.html#ChamplainMapSourceChain-struct">struct ChamplainMapSourceChain</a>
</dt>
<dt id="ientry-idp66517344">ChamplainMapSourceConstructor, <a class="indexterm" href="ChamplainMapSourceDesc.html#ChamplainMapSourceConstructor">ChamplainMapSourceConstructor ()</a>
</dt>
<dt id="ientry-idp66990560">ChamplainMapSourceDesc, <a class="indexterm" href="ChamplainMapSourceDesc.html#ChamplainMapSourceDesc-struct">struct ChamplainMapSourceDesc</a>
</dt>
<dt id="ientry-idp66998352">ChamplainMapSourceDesc:constructor, <a class="indexterm" href="ChamplainMapSourceDesc.html#ChamplainMapSourceDesc--constructor">The “constructor” property</a>
</dt>
<dt id="ientry-idp67004576">ChamplainMapSourceDesc:data, <a class="indexterm" href="ChamplainMapSourceDesc.html#ChamplainMapSourceDesc--data">The “data” property</a>
</dt>
<dt id="ientry-idp67010800">ChamplainMapSourceDesc:id, <a class="indexterm" href="ChamplainMapSourceDesc.html#ChamplainMapSourceDesc--id">The “id” property</a>
</dt>
<dt id="ientry-idp67017536">ChamplainMapSourceDesc:license, <a class="indexterm" href="ChamplainMapSourceDesc.html#ChamplainMapSourceDesc--license">The “license” property</a>
</dt>
<dt id="ientry-idp67024272">ChamplainMapSourceDesc:license-uri, <a class="indexterm" href="ChamplainMapSourceDesc.html#ChamplainMapSourceDesc--license-uri">The “license-uri” property</a>
</dt>
<dt id="ientry-idp67031008">ChamplainMapSourceDesc:max-zoom-level, <a class="indexterm" href="ChamplainMapSourceDesc.html#ChamplainMapSourceDesc--max-zoom-level">The “max-zoom-level” property</a>
</dt>
<dt id="ientry-idp67038000">ChamplainMapSourceDesc:min-zoom-level, <a class="indexterm" href="ChamplainMapSourceDesc.html#ChamplainMapSourceDesc--min-zoom-level">The “min-zoom-level” property</a>
</dt>
<dt id="ientry-idp67044992">ChamplainMapSourceDesc:name, <a class="indexterm" href="ChamplainMapSourceDesc.html#ChamplainMapSourceDesc--name">The “name” property</a>
</dt>
<dt id="ientry-idp67051728">ChamplainMapSourceDesc:projection, <a class="indexterm" href="ChamplainMapSourceDesc.html#ChamplainMapSourceDesc--projection">The “projection” property</a>
</dt>
<dt id="ientry-idp67058336">ChamplainMapSourceDesc:tile-size, <a class="indexterm" href="ChamplainMapSourceDesc.html#ChamplainMapSourceDesc--tile-size">The “tile-size” property</a>
</dt>
<dt id="ientry-idp67065328">ChamplainMapSourceDesc:uri-format, <a class="indexterm" href="ChamplainMapSourceDesc.html#ChamplainMapSourceDesc--uri-format">The “uri-format” property</a>
</dt>
<dt id="ientry-idp66069632">ChamplainMapSourceFactory, <a class="indexterm" href="ChamplainMapSourceFactory.html#ChamplainMapSourceFactory-struct">struct ChamplainMapSourceFactory</a>
</dt>
<dt id="ientry-idp65428288">champlain_map_source_chain_new, <a class="indexterm" href="ChamplainMapSourceChain.html#champlain-map-source-chain-new">champlain_map_source_chain_new ()</a>
</dt>
<dt id="ientry-idp65131360">champlain_map_source_chain_pop, <a class="indexterm" href="ChamplainMapSourceChain.html#champlain-map-source-chain-pop">champlain_map_source_chain_pop ()</a>
</dt>
<dt id="ientry-idp64257248">champlain_map_source_chain_push, <a class="indexterm" href="ChamplainMapSourceChain.html#champlain-map-source-chain-push">champlain_map_source_chain_push ()</a>
</dt>
<dt id="ientry-idp66539328">CHAMPLAIN_MAP_SOURCE_CONSTRUCTOR, <a class="indexterm" href="ChamplainMapSourceDesc.html#CHAMPLAIN-MAP-SOURCE-CONSTRUCTOR:CAPS">CHAMPLAIN_MAP_SOURCE_CONSTRUCTOR</a>
</dt>
<dt id="ientry-idp66972512">champlain_map_source_desc_get_constructor, <a class="indexterm" href="ChamplainMapSourceDesc.html#champlain-map-source-desc-get-constructor">champlain_map_source_desc_get_constructor ()</a>
</dt>
<dt id="ientry-idp66955584">champlain_map_source_desc_get_data, <a class="indexterm" href="ChamplainMapSourceDesc.html#champlain-map-source-desc-get-data">champlain_map_source_desc_get_data ()</a>
</dt>
<dt id="ientry-idp66606720">champlain_map_source_desc_get_id, <a class="indexterm" href="ChamplainMapSourceDesc.html#champlain-map-source-desc-get-id">champlain_map_source_desc_get_id ()</a>
</dt>
<dt id="ientry-idp66643072">champlain_map_source_desc_get_license, <a class="indexterm" href="ChamplainMapSourceDesc.html#champlain-map-source-desc-get-license">champlain_map_source_desc_get_license ()</a>
</dt>
<dt id="ientry-idp66661072">champlain_map_source_desc_get_license_uri, <a class="indexterm" href="ChamplainMapSourceDesc.html#champlain-map-source-desc-get-license-uri">champlain_map_source_desc_get_license_uri ()</a>
</dt>
<dt id="ientry-idp66908208">champlain_map_source_desc_get_max_zoom_level, <a class="indexterm" href="ChamplainMapSourceDesc.html#champlain-map-source-desc-get-max-zoom-level">champlain_map_source_desc_get_max_zoom_level ()</a>
</dt>
<dt id="ientry-idp66696960">champlain_map_source_desc_get_min_zoom_level, <a class="indexterm" href="ChamplainMapSourceDesc.html#champlain-map-source-desc-get-min-zoom-level">champlain_map_source_desc_get_min_zoom_level ()</a>
</dt>
<dt id="ientry-idp66624912">champlain_map_source_desc_get_name, <a class="indexterm" href="ChamplainMapSourceDesc.html#champlain-map-source-desc-get-name">champlain_map_source_desc_get_name ()</a>
</dt>
<dt id="ientry-idp66939792">champlain_map_source_desc_get_projection, <a class="indexterm" href="ChamplainMapSourceDesc.html#champlain-map-source-desc-get-projection">champlain_map_source_desc_get_projection ()</a>
</dt>
<dt id="ientry-idp66924000">champlain_map_source_desc_get_tile_size, <a class="indexterm" href="ChamplainMapSourceDesc.html#champlain-map-source-desc-get-tile-size">champlain_map_source_desc_get_tile_size ()</a>
</dt>
<dt id="ientry-idp66679024">champlain_map_source_desc_get_uri_format, <a class="indexterm" href="ChamplainMapSourceDesc.html#champlain-map-source-desc-get-uri-format">champlain_map_source_desc_get_uri_format ()</a>
</dt>
<dt id="ientry-idp66546224">champlain_map_source_desc_new_full, <a class="indexterm" href="ChamplainMapSourceDesc.html#champlain-map-source-desc-new-full">champlain_map_source_desc_new_full ()</a>
</dt>
<dt id="ientry-idp65927056">champlain_map_source_factory_create, <a class="indexterm" href="ChamplainMapSourceFactory.html#champlain-map-source-factory-create">champlain_map_source_factory_create ()</a>
</dt>
<dt id="ientry-idp65950480">champlain_map_source_factory_create_cached_source, <a class="indexterm" href="ChamplainMapSourceFactory.html#champlain-map-source-factory-create-cached-source">champlain_map_source_factory_create_cached_source ()</a>
</dt>
<dt id="ientry-idp66002320">champlain_map_source_factory_create_error_source, <a class="indexterm" href="ChamplainMapSourceFactory.html#champlain-map-source-factory-create-error-source">champlain_map_source_factory_create_error_source ()</a>
</dt>
<dt id="ientry-idp65977296">champlain_map_source_factory_create_memcached_source, <a class="indexterm" href="ChamplainMapSourceFactory.html#champlain-map-source-factory-create-memcached-source">champlain_map_source_factory_create_memcached_source ()</a>
</dt>
<dt id="ientry-idp65914016">champlain_map_source_factory_dup_default, <a class="indexterm" href="ChamplainMapSourceFactory.html#champlain-map-source-factory-dup-default">champlain_map_source_factory_dup_default ()</a>
</dt>
<dt id="ientry-idp66048176">champlain_map_source_factory_get_registered, <a class="indexterm" href="ChamplainMapSourceFactory.html#champlain-map-source-factory-get-registered">champlain_map_source_factory_get_registered ()</a>
</dt>
<dt id="ientry-idp66024624">champlain_map_source_factory_register, <a class="indexterm" href="ChamplainMapSourceFactory.html#champlain-map-source-factory-register">champlain_map_source_factory_register ()</a>
</dt>
<dt id="ientry-idp64452624">champlain_map_source_fill_tile, <a class="indexterm" href="ChamplainMapSource.html#champlain-map-source-fill-tile">champlain_map_source_fill_tile ()</a>
</dt>
<dt id="ientry-idp64407440">champlain_map_source_get_column_count, <a class="indexterm" href="ChamplainMapSource.html#champlain-map-source-get-column-count">champlain_map_source_get_column_count ()</a>
</dt>
<dt id="ientry-idp63643888">champlain_map_source_get_id, <a class="indexterm" href="ChamplainMapSource.html#champlain-map-source-get-id">champlain_map_source_get_id ()</a>
</dt>
<dt id="ientry-idp64365728">champlain_map_source_get_latitude, <a class="indexterm" href="ChamplainMapSource.html#champlain-map-source-get-latitude">champlain_map_source_get_latitude ()</a>
</dt>
<dt id="ientry-idp63680272">champlain_map_source_get_license, <a class="indexterm" href="ChamplainMapSource.html#champlain-map-source-get-license">champlain_map_source_get_license ()</a>
</dt>
<dt id="ientry-idp63698496">champlain_map_source_get_license_uri, <a class="indexterm" href="ChamplainMapSource.html#champlain-map-source-get-license-uri">champlain_map_source_get_license_uri ()</a>
</dt>
<dt id="ientry-idp64343184">champlain_map_source_get_longitude, <a class="indexterm" href="ChamplainMapSource.html#champlain-map-source-get-longitude">champlain_map_source_get_longitude ()</a>
</dt>
<dt id="ientry-idp63734576">champlain_map_source_get_max_zoom_level, <a class="indexterm" href="ChamplainMapSource.html#champlain-map-source-get-max-zoom-level">champlain_map_source_get_max_zoom_level ()</a>
</dt>
<dt id="ientry-idp64426608">champlain_map_source_get_meters_per_pixel, <a class="indexterm" href="ChamplainMapSource.html#champlain-map-source-get-meters-per-pixel">champlain_map_source_get_meters_per_pixel ()</a>
</dt>
<dt id="ientry-idp63716640">champlain_map_source_get_min_zoom_level, <a class="indexterm" href="ChamplainMapSource.html#champlain-map-source-get-min-zoom-level">champlain_map_source_get_min_zoom_level ()</a>
</dt>
<dt id="ientry-idp63662080">champlain_map_source_get_name, <a class="indexterm" href="ChamplainMapSource.html#champlain-map-source-get-name">champlain_map_source_get_name ()</a>
</dt>
<dt id="ientry-idp64471248">champlain_map_source_get_next_source, <a class="indexterm" href="ChamplainMapSource.html#champlain-map-source-get-next-source">champlain_map_source_get_next_source ()</a>
</dt>
<dt id="ientry-idp63770544">champlain_map_source_get_projection, <a class="indexterm" href="ChamplainMapSource.html#champlain-map-source-get-projection">champlain_map_source_get_projection ()</a>
</dt>
<dt id="ientry-idp64506832">champlain_map_source_get_renderer, <a class="indexterm" href="ChamplainMapSource.html#champlain-map-source-get-renderer">champlain_map_source_get_renderer ()</a>
</dt>
<dt id="ientry-idp64388272">champlain_map_source_get_row_count, <a class="indexterm" href="ChamplainMapSource.html#champlain-map-source-get-row-count">champlain_map_source_get_row_count ()</a>
</dt>
<dt id="ientry-idp63752512">champlain_map_source_get_tile_size, <a class="indexterm" href="ChamplainMapSource.html#champlain-map-source-get-tile-size">champlain_map_source_get_tile_size ()</a>
</dt>
<dt id="ientry-idp63788624">champlain_map_source_get_x, <a class="indexterm" href="ChamplainMapSource.html#champlain-map-source-get-x">champlain_map_source_get_x ()</a>
</dt>
<dt id="ientry-idp63814352">champlain_map_source_get_y, <a class="indexterm" href="ChamplainMapSource.html#champlain-map-source-get-y">champlain_map_source_get_y ()</a>
</dt>
<dt id="ientry-idp66097808">CHAMPLAIN_MAP_SOURCE_MFF_RELIEF, <a class="indexterm" href="ChamplainMapSourceFactory.html#CHAMPLAIN-MAP-SOURCE-MFF-RELIEF:CAPS">CHAMPLAIN_MAP_SOURCE_MFF_RELIEF</a>
</dt>
<dt id="ientry-idp66102432">CHAMPLAIN_MAP_SOURCE_OAM, <a class="indexterm" href="ChamplainMapSourceFactory.html#CHAMPLAIN-MAP-SOURCE-OAM:CAPS">CHAMPLAIN_MAP_SOURCE_OAM</a>
</dt>
<dt id="ientry-idp66089136">CHAMPLAIN_MAP_SOURCE_OSM_AERIAL_MAP, <a class="indexterm" href="ChamplainMapSourceFactory.html#CHAMPLAIN-MAP-SOURCE-OSM-AERIAL-MAP:CAPS">CHAMPLAIN_MAP_SOURCE_OSM_AERIAL_MAP</a>
</dt>
<dt id="ientry-idp66080624">CHAMPLAIN_MAP_SOURCE_OSM_CYCLE_MAP, <a class="indexterm" href="ChamplainMapSourceFactory.html#CHAMPLAIN-MAP-SOURCE-OSM-CYCLE-MAP:CAPS">CHAMPLAIN_MAP_SOURCE_OSM_CYCLE_MAP</a>
</dt>
<dt id="ientry-idp66076272">CHAMPLAIN_MAP_SOURCE_OSM_MAPNIK, <a class="indexterm" href="ChamplainMapSourceFactory.html#CHAMPLAIN-MAP-SOURCE-OSM-MAPNIK:CAPS">CHAMPLAIN_MAP_SOURCE_OSM_MAPNIK</a>
</dt>
<dt id="ientry-idp66093456">CHAMPLAIN_MAP_SOURCE_OSM_MAPQUEST, <a class="indexterm" href="ChamplainMapSourceFactory.html#CHAMPLAIN-MAP-SOURCE-OSM-MAPQUEST:CAPS">CHAMPLAIN_MAP_SOURCE_OSM_MAPQUEST</a>
</dt>
<dt id="ientry-idp66109136">CHAMPLAIN_MAP_SOURCE_OSM_OSMARENDER, <a class="indexterm" href="ChamplainMapSourceFactory.html#CHAMPLAIN-MAP-SOURCE-OSM-OSMARENDER:CAPS">CHAMPLAIN_MAP_SOURCE_OSM_OSMARENDER</a>
</dt>
<dt id="ientry-idp66084896">CHAMPLAIN_MAP_SOURCE_OSM_TRANSPORT_MAP, <a class="indexterm" href="ChamplainMapSourceFactory.html#CHAMPLAIN-MAP-SOURCE-OSM-TRANSPORT-MAP:CAPS">CHAMPLAIN_MAP_SOURCE_OSM_TRANSPORT_MAP</a>
</dt>
<dt id="ientry-idp66115632">CHAMPLAIN_MAP_SOURCE_OWM_CLOUDS, <a class="indexterm" href="ChamplainMapSourceFactory.html#CHAMPLAIN-MAP-SOURCE-OWM-CLOUDS:CAPS">CHAMPLAIN_MAP_SOURCE_OWM_CLOUDS</a>
</dt>
<dt id="ientry-idp66119904">CHAMPLAIN_MAP_SOURCE_OWM_PRECIPITATION, <a class="indexterm" href="ChamplainMapSourceFactory.html#CHAMPLAIN-MAP-SOURCE-OWM-PRECIPITATION:CAPS">CHAMPLAIN_MAP_SOURCE_OWM_PRECIPITATION</a>
</dt>
<dt id="ientry-idp66124240">CHAMPLAIN_MAP_SOURCE_OWM_PRESSURE, <a class="indexterm" href="ChamplainMapSourceFactory.html#CHAMPLAIN-MAP-SOURCE-OWM-PRESSURE:CAPS">CHAMPLAIN_MAP_SOURCE_OWM_PRESSURE</a>
</dt>
<dt id="ientry-idp66128512">CHAMPLAIN_MAP_SOURCE_OWM_TEMPERATURE, <a class="indexterm" href="ChamplainMapSourceFactory.html#CHAMPLAIN-MAP-SOURCE-OWM-TEMPERATURE:CAPS">CHAMPLAIN_MAP_SOURCE_OWM_TEMPERATURE</a>
</dt>
<dt id="ientry-idp66132848">CHAMPLAIN_MAP_SOURCE_OWM_WIND, <a class="indexterm" href="ChamplainMapSourceFactory.html#CHAMPLAIN-MAP-SOURCE-OWM-WIND:CAPS">CHAMPLAIN_MAP_SOURCE_OWM_WIND</a>
</dt>
<dt id="ientry-idp64488176">champlain_map_source_set_next_source, <a class="indexterm" href="ChamplainMapSource.html#champlain-map-source-set-next-source">champlain_map_source_set_next_source ()</a>
</dt>
<dt id="ientry-idp64523760">champlain_map_source_set_renderer, <a class="indexterm" href="ChamplainMapSource.html#champlain-map-source-set-renderer">champlain_map_source_set_renderer ()</a>
</dt>
<dt id="ientry-idp61719504">ChamplainMarker, <a class="indexterm" href="ChamplainMarker.html#ChamplainMarker-struct">struct ChamplainMarker</a>
</dt>
<dt id="ientry-idp61753152">ChamplainMarker::button-press, <a class="indexterm" href="ChamplainMarker.html#ChamplainMarker-button-press">The “button-press” signal</a>
</dt>
<dt id="ientry-idp61776752">ChamplainMarker::button-release, <a class="indexterm" href="ChamplainMarker.html#ChamplainMarker-button-release">The “button-release” signal</a>
</dt>
<dt id="ientry-idp61800304">ChamplainMarker::drag-finish, <a class="indexterm" href="ChamplainMarker.html#ChamplainMarker-drag-finish">The “drag-finish” signal</a>
</dt>
<dt id="ientry-idp61823856">ChamplainMarker::drag-motion, <a class="indexterm" href="ChamplainMarker.html#ChamplainMarker-drag-motion">The “drag-motion” signal</a>
</dt>
<dt id="ientry-idp61728384">ChamplainMarker:draggable, <a class="indexterm" href="ChamplainMarker.html#ChamplainMarker--draggable">The “draggable” property</a>
</dt>
<dt id="ientry-idp61736048">ChamplainMarker:selectable, <a class="indexterm" href="ChamplainMarker.html#ChamplainMarker--selectable">The “selectable” property</a>
</dt>
<dt id="ientry-idp61743712">ChamplainMarker:selected, <a class="indexterm" href="ChamplainMarker.html#ChamplainMarker--selected">The “selected” property</a>
</dt>
<dt id="ientry-idp54242480">ChamplainMarkerLayer, <a class="indexterm" href="ChamplainMarkerLayer.html#ChamplainMarkerLayer-struct">struct ChamplainMarkerLayer</a>
</dt>
<dt id="ientry-idp54270272">ChamplainMarkerLayer:selection-mode, <a class="indexterm" href="ChamplainMarkerLayer.html#ChamplainMarkerLayer--selection-mode">The “selection-mode” property</a>
</dt>
<dt id="ientry-idp61334928">champlain_marker_animate_in, <a class="indexterm" href="ChamplainMarker.html#champlain-marker-animate-in">champlain_marker_animate_in ()</a>
</dt>
<dt id="ientry-idp61351472">champlain_marker_animate_in_with_delay, <a class="indexterm" href="ChamplainMarker.html#champlain-marker-animate-in-with-delay">champlain_marker_animate_in_with_delay ()</a>
</dt>
<dt id="ientry-idp61371760">champlain_marker_animate_out, <a class="indexterm" href="ChamplainMarker.html#champlain-marker-animate-out">champlain_marker_animate_out ()</a>
</dt>
<dt id="ientry-idp61646576">champlain_marker_animate_out_with_delay, <a class="indexterm" href="ChamplainMarker.html#champlain-marker-animate-out-with-delay">champlain_marker_animate_out_with_delay ()</a>
</dt>
<dt id="ientry-idp61278544">champlain_marker_get_draggable, <a class="indexterm" href="ChamplainMarker.html#champlain-marker-get-draggable">champlain_marker_get_draggable ()</a>
</dt>
<dt id="ientry-idp61240176">champlain_marker_get_selectable, <a class="indexterm" href="ChamplainMarker.html#champlain-marker-get-selectable">champlain_marker_get_selectable ()</a>
</dt>
<dt id="ientry-idp61316912">champlain_marker_get_selected, <a class="indexterm" href="ChamplainMarker.html#champlain-marker-get-selected">champlain_marker_get_selected ()</a>
</dt>
<dt id="ientry-idp61666864">champlain_marker_get_selection_color, <a class="indexterm" href="ChamplainMarker.html#champlain-marker-get-selection-color">champlain_marker_get_selection_color ()</a>
</dt>
<dt id="ientry-idp61675840">champlain_marker_get_selection_text_color, <a class="indexterm" href="ChamplainMarker.html#champlain-marker-get-selection-text-color">champlain_marker_get_selection_text_color ()</a>
</dt>
<dt id="ientry-idp59114448">champlain_marker_layer_add_marker, <a class="indexterm" href="ChamplainMarkerLayer.html#champlain-marker-layer-add-marker">champlain_marker_layer_add_marker ()</a>
</dt>
<dt id="ientry-idp59212544">champlain_marker_layer_animate_in_all_markers, <a class="indexterm" href="ChamplainMarkerLayer.html#champlain-marker-layer-animate-in-all-markers">champlain_marker_layer_animate_in_all_markers ()</a>
</dt>
<dt id="ientry-idp59228816">champlain_marker_layer_animate_out_all_markers, <a class="indexterm" href="ChamplainMarkerLayer.html#champlain-marker-layer-animate-out-all-markers">champlain_marker_layer_animate_out_all_markers ()</a>
</dt>
<dt id="ientry-idp59173136">champlain_marker_layer_get_markers, <a class="indexterm" href="ChamplainMarkerLayer.html#champlain-marker-layer-get-markers">champlain_marker_layer_get_markers ()</a>
</dt>
<dt id="ientry-idp59192976">champlain_marker_layer_get_selected, <a class="indexterm" href="ChamplainMarkerLayer.html#champlain-marker-layer-get-selected">champlain_marker_layer_get_selected ()</a>
</dt>
<dt id="ientry-idp54222944">champlain_marker_layer_get_selection_mode, <a class="indexterm" href="ChamplainMarkerLayer.html#champlain-marker-layer-get-selection-mode">champlain_marker_layer_get_selection_mode ()</a>
</dt>
<dt id="ientry-idp59261744">champlain_marker_layer_hide_all_markers, <a class="indexterm" href="ChamplainMarkerLayer.html#champlain-marker-layer-hide-all-markers">champlain_marker_layer_hide_all_markers ()</a>
</dt>
<dt id="ientry-idp59084672">champlain_marker_layer_new, <a class="indexterm" href="ChamplainMarkerLayer.html#champlain-marker-layer-new">champlain_marker_layer_new ()</a>
</dt>
<dt id="ientry-idp59095408">champlain_marker_layer_new_full, <a class="indexterm" href="ChamplainMarkerLayer.html#champlain-marker-layer-new-full">champlain_marker_layer_new_full ()</a>
</dt>
<dt id="ientry-idp59156544">champlain_marker_layer_remove_all, <a class="indexterm" href="ChamplainMarkerLayer.html#champlain-marker-layer-remove-all">champlain_marker_layer_remove_all ()</a>
</dt>
<dt id="ientry-idp59135536">champlain_marker_layer_remove_marker, <a class="indexterm" href="ChamplainMarkerLayer.html#champlain-marker-layer-remove-marker">champlain_marker_layer_remove_marker ()</a>
</dt>
<dt id="ientry-idp54168672">champlain_marker_layer_select_all_markers, <a class="indexterm" href="ChamplainMarkerLayer.html#champlain-marker-layer-select-all-markers">champlain_marker_layer_select_all_markers ()</a>
</dt>
<dt id="ientry-idp59278112">champlain_marker_layer_set_all_markers_draggable, <a class="indexterm" href="ChamplainMarkerLayer.html#champlain-marker-layer-set-all-markers-draggable">champlain_marker_layer_set_all_markers_draggable ()</a>
</dt>
<dt id="ientry-idp54152448">champlain_marker_layer_set_all_markers_undraggable, <a class="indexterm" href="ChamplainMarkerLayer.html#champlain-marker-layer-set-all-markers-undraggable">champlain_marker_layer_set_all_markers_undraggable ()</a>
</dt>
<dt id="ientry-idp54201312">champlain_marker_layer_set_selection_mode, <a class="indexterm" href="ChamplainMarkerLayer.html#champlain-marker-layer-set-selection-mode">champlain_marker_layer_set_selection_mode ()</a>
</dt>
<dt id="ientry-idp59245232">champlain_marker_layer_show_all_markers, <a class="indexterm" href="ChamplainMarkerLayer.html#champlain-marker-layer-show-all-markers">champlain_marker_layer_show_all_markers ()</a>
</dt>
<dt id="ientry-idp54184992">champlain_marker_layer_unselect_all_markers, <a class="indexterm" href="ChamplainMarkerLayer.html#champlain-marker-layer-unselect-all-markers">champlain_marker_layer_unselect_all_markers ()</a>
</dt>
<dt id="ientry-idp61209056">champlain_marker_new, <a class="indexterm" href="ChamplainMarker.html#champlain-marker-new">champlain_marker_new ()</a>
</dt>
<dt id="ientry-idp61258144">champlain_marker_set_draggable, <a class="indexterm" href="ChamplainMarker.html#champlain-marker-set-draggable">champlain_marker_set_draggable ()</a>
</dt>
<dt id="ientry-idp61219776">champlain_marker_set_selectable, <a class="indexterm" href="ChamplainMarker.html#champlain-marker-set-selectable">champlain_marker_set_selectable ()</a>
</dt>
<dt id="ientry-idp61296560">champlain_marker_set_selected, <a class="indexterm" href="ChamplainMarker.html#champlain-marker-set-selected">champlain_marker_set_selected ()</a>
</dt>
<dt id="ientry-idp61684912">champlain_marker_set_selection_color, <a class="indexterm" href="ChamplainMarker.html#champlain-marker-set-selection-color">champlain_marker_set_selection_color ()</a>
</dt>
<dt id="ientry-idp61701424">champlain_marker_set_selection_text_color, <a class="indexterm" href="ChamplainMarker.html#champlain-marker-set-selection-text-color">champlain_marker_set_selection_text_color ()</a>
</dt>
<dt id="ientry-idp65779520">ChamplainMemoryCache, <a class="indexterm" href="ChamplainMemoryCache.html#ChamplainMemoryCache-struct">struct ChamplainMemoryCache</a>
</dt>
<dt id="ientry-idp65787216">ChamplainMemoryCache:size-limit, <a class="indexterm" href="ChamplainMemoryCache.html#ChamplainMemoryCache--size-limit">The “size-limit” property</a>
</dt>
<dt id="ientry-idp65763744">champlain_memory_cache_clean, <a class="indexterm" href="ChamplainMemoryCache.html#champlain-memory-cache-clean">champlain_memory_cache_clean ()</a>
</dt>
<dt id="ientry-idp64227056">champlain_memory_cache_get_size_limit, <a class="indexterm" href="ChamplainMemoryCache.html#champlain-memory-cache-get-size-limit">champlain_memory_cache_get_size_limit ()</a>
</dt>
<dt id="ientry-idp64197328">champlain_memory_cache_new_full, <a class="indexterm" href="ChamplainMemoryCache.html#champlain-memory-cache-new-full">champlain_memory_cache_new_full ()</a>
</dt>
<dt id="ientry-idp64244992">champlain_memory_cache_set_size_limit, <a class="indexterm" href="ChamplainMemoryCache.html#champlain-memory-cache-set-size-limit">champlain_memory_cache_set_size_limit ()</a>
</dt>
<dt id="ientry-idp67125616">CHAMPLAIN_MICRO_VERSION, <a class="indexterm" href="libchamplain-ChamplainVersion.html#CHAMPLAIN-MICRO-VERSION:CAPS">CHAMPLAIN_MICRO_VERSION</a>
</dt>
<dt id="ientry-idp67120160">CHAMPLAIN_MINOR_VERSION, <a class="indexterm" href="libchamplain-ChamplainVersion.html#CHAMPLAIN-MINOR-VERSION:CAPS">CHAMPLAIN_MINOR_VERSION</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>N</h3>
<dl>
<dt id="ientry-idp65298960">ChamplainNetworkBboxTileSource, <a class="indexterm" href="ChamplainNetworkBboxTileSource.html#ChamplainNetworkBboxTileSource-struct">struct ChamplainNetworkBboxTileSource</a>
</dt>
<dt id="ientry-idp65307872">ChamplainNetworkBboxTileSource:api-uri, <a class="indexterm" href="ChamplainNetworkBboxTileSource.html#ChamplainNetworkBboxTileSource--api-uri">The “api-uri” property</a>
</dt>
<dt id="ientry-idp65315536">ChamplainNetworkBboxTileSource:proxy-uri, <a class="indexterm" href="ChamplainNetworkBboxTileSource.html#ChamplainNetworkBboxTileSource--proxy-uri">The “proxy-uri” property</a>
</dt>
<dt id="ientry-idp65323280">ChamplainNetworkBboxTileSource:state, <a class="indexterm" href="ChamplainNetworkBboxTileSource.html#ChamplainNetworkBboxTileSource--state">The “state” property</a>
</dt>
<dt id="ientry-idp64761600">ChamplainNetworkTileSource, <a class="indexterm" href="ChamplainNetworkTileSource.html#ChamplainNetworkTileSource-struct">struct ChamplainNetworkTileSource</a>
</dt>
<dt id="ientry-idp64770512">ChamplainNetworkTileSource:offline, <a class="indexterm" href="ChamplainNetworkTileSource.html#ChamplainNetworkTileSource--offline">The “offline” property</a>
</dt>
<dt id="ientry-idp64778144">ChamplainNetworkTileSource:proxy-uri, <a class="indexterm" href="ChamplainNetworkTileSource.html#ChamplainNetworkTileSource--proxy-uri">The “proxy-uri” property</a>
</dt>
<dt id="ientry-idp64785936">ChamplainNetworkTileSource:uri-format, <a class="indexterm" href="ChamplainNetworkTileSource.html#ChamplainNetworkTileSource--uri-format">The “uri-format” property</a>
</dt>
<dt id="ientry-idp65259040">champlain_network_bbox_tile_source_get_api_uri, <a class="indexterm" href="ChamplainNetworkBboxTileSource.html#champlain-network-bbox-tile-source-get-api-uri">champlain_network_bbox_tile_source_get_api_uri ()</a>
</dt>
<dt id="ientry-idp65237440">champlain_network_bbox_tile_source_load_map_data, <a class="indexterm" href="ChamplainNetworkBboxTileSource.html#champlain-network-bbox-tile-source-load-map-data">champlain_network_bbox_tile_source_load_map_data ()</a>
</dt>
<dt id="ientry-idp65186528">champlain_network_bbox_tile_source_new_full, <a class="indexterm" href="ChamplainNetworkBboxTileSource.html#champlain-network-bbox-tile-source-new-full">champlain_network_bbox_tile_source_new_full ()</a>
</dt>
<dt id="ientry-idp65277056">champlain_network_bbox_tile_source_set_api_uri, <a class="indexterm" href="ChamplainNetworkBboxTileSource.html#champlain-network-bbox-tile-source-set-api-uri">champlain_network_bbox_tile_source_set_api_uri ()</a>
</dt>
<dt id="ientry-idp64703984">champlain_network_tile_source_get_offline, <a class="indexterm" href="ChamplainNetworkTileSource.html#champlain-network-tile-source-get-offline">champlain_network_tile_source_get_offline ()</a>
</dt>
<dt id="ientry-idp64742096">champlain_network_tile_source_get_proxy_uri, <a class="indexterm" href="ChamplainNetworkTileSource.html#champlain-network-tile-source-get-proxy-uri">champlain_network_tile_source_get_proxy_uri ()</a>
</dt>
<dt id="ientry-idp64663952">champlain_network_tile_source_get_uri_format, <a class="indexterm" href="ChamplainNetworkTileSource.html#champlain-network-tile-source-get-uri-format">champlain_network_tile_source_get_uri_format ()</a>
</dt>
<dt id="ientry-idp64587216">champlain_network_tile_source_new_full, <a class="indexterm" href="ChamplainNetworkTileSource.html#champlain-network-tile-source-new-full">champlain_network_tile_source_new_full ()</a>
</dt>
<dt id="ientry-idp64683840">champlain_network_tile_source_set_offline, <a class="indexterm" href="ChamplainNetworkTileSource.html#champlain-network-tile-source-set-offline">champlain_network_tile_source_set_offline ()</a>
</dt>
<dt id="ientry-idp64721776">champlain_network_tile_source_set_proxy_uri, <a class="indexterm" href="ChamplainNetworkTileSource.html#champlain-network-tile-source-set-proxy-uri">champlain_network_tile_source_set_proxy_uri ()</a>
</dt>
<dt id="ientry-idp64642784">champlain_network_tile_source_set_uri_format, <a class="indexterm" href="ChamplainNetworkTileSource.html#champlain-network-tile-source-set-uri-format">champlain_network_tile_source_set_uri_format ()</a>
</dt>
<dt id="ientry-idp64794288">ChamplainNullTileSource, <a class="indexterm" href="ChamplainNullTileSource.html#ChamplainNullTileSource-struct">struct ChamplainNullTileSource</a>
</dt>
<dt id="ientry-idp64839808">champlain_null_tile_source_new_full, <a class="indexterm" href="ChamplainNullTileSource.html#champlain-null-tile-source-new-full">champlain_null_tile_source_new_full ()</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>P</h3>
<dl>
<dt id="ientry-idp62056128">ChamplainPathLayer, <a class="indexterm" href="ChamplainPathLayer.html#ChamplainPathLayer-struct">struct ChamplainPathLayer</a>
</dt>
<dt id="ientry-idp62063824">ChamplainPathLayer:closed, <a class="indexterm" href="ChamplainPathLayer.html#ChamplainPathLayer--closed">The “closed” property</a>
</dt>
<dt id="ientry-idp62070432">ChamplainPathLayer:fill, <a class="indexterm" href="ChamplainPathLayer.html#ChamplainPathLayer--fill">The “fill” property</a>
</dt>
<dt id="ientry-idp62077040">ChamplainPathLayer:fill-color, <a class="indexterm" href="ChamplainPathLayer.html#ChamplainPathLayer--fill-color">The “fill-color” property</a>
</dt>
<dt id="ientry-idp62083392">ChamplainPathLayer:stroke, <a class="indexterm" href="ChamplainPathLayer.html#ChamplainPathLayer--stroke">The “stroke” property</a>
</dt>
<dt id="ientry-idp62090000">ChamplainPathLayer:stroke-color, <a class="indexterm" href="ChamplainPathLayer.html#ChamplainPathLayer--stroke-color">The “stroke-color” property</a>
</dt>
<dt id="ientry-idp62096352">ChamplainPathLayer:stroke-width, <a class="indexterm" href="ChamplainPathLayer.html#ChamplainPathLayer--stroke-width">The “stroke-width” property</a>
</dt>
<dt id="ientry-idp62103344">ChamplainPathLayer:visible, <a class="indexterm" href="ChamplainPathLayer.html#ChamplainPathLayer--visible">The “visible” property</a>
</dt>
<dt id="ientry-idp58962000">champlain_path_layer_add_node, <a class="indexterm" href="ChamplainPathLayer.html#champlain-path-layer-add-node">champlain_path_layer_add_node ()</a>
</dt>
<dt id="ientry-idp61982416">champlain_path_layer_get_closed, <a class="indexterm" href="ChamplainPathLayer.html#champlain-path-layer-get-closed">champlain_path_layer_get_closed ()</a>
</dt>
<dt id="ientry-idp62016112">champlain_path_layer_get_dash, <a class="indexterm" href="ChamplainPathLayer.html#champlain-path-layer-get-dash">champlain_path_layer_get_dash ()</a>
</dt>
<dt id="ientry-idp61050704">champlain_path_layer_get_fill, <a class="indexterm" href="ChamplainPathLayer.html#champlain-path-layer-get-fill">champlain_path_layer_get_fill ()</a>
</dt>
<dt id="ientry-idp60971520">champlain_path_layer_get_fill_color, <a class="indexterm" href="ChamplainPathLayer.html#champlain-path-layer-get-fill-color">champlain_path_layer_get_fill_color ()</a>
</dt>
<dt id="ientry-idp60950912">champlain_path_layer_get_nodes, <a class="indexterm" href="ChamplainPathLayer.html#champlain-path-layer-get-nodes">champlain_path_layer_get_nodes ()</a>
</dt>
<dt id="ientry-idp61089120">champlain_path_layer_get_stroke, <a class="indexterm" href="ChamplainPathLayer.html#champlain-path-layer-get-stroke">champlain_path_layer_get_stroke ()</a>
</dt>
<dt id="ientry-idp61011200">champlain_path_layer_get_stroke_color, <a class="indexterm" href="ChamplainPathLayer.html#champlain-path-layer-get-stroke-color">champlain_path_layer_get_stroke_color ()</a>
</dt>
<dt id="ientry-idp61127536">champlain_path_layer_get_stroke_width, <a class="indexterm" href="ChamplainPathLayer.html#champlain-path-layer-get-stroke-width">champlain_path_layer_get_stroke_width ()</a>
</dt>
<dt id="ientry-idp61948720">champlain_path_layer_get_visible, <a class="indexterm" href="ChamplainPathLayer.html#champlain-path-layer-get-visible">champlain_path_layer_get_visible ()</a>
</dt>
<dt id="ientry-idp60924288">champlain_path_layer_insert_node, <a class="indexterm" href="ChamplainPathLayer.html#champlain-path-layer-insert-node">champlain_path_layer_insert_node ()</a>
</dt>
<dt id="ientry-idp58951232">champlain_path_layer_new, <a class="indexterm" href="ChamplainPathLayer.html#champlain-path-layer-new">champlain_path_layer_new ()</a>
</dt>
<dt id="ientry-idp60906848">champlain_path_layer_remove_all, <a class="indexterm" href="ChamplainPathLayer.html#champlain-path-layer-remove-all">champlain_path_layer_remove_all ()</a>
</dt>
<dt id="ientry-idp58983888">champlain_path_layer_remove_node, <a class="indexterm" href="ChamplainPathLayer.html#champlain-path-layer-remove-node">champlain_path_layer_remove_node ()</a>
</dt>
<dt id="ientry-idp61998208">champlain_path_layer_set_closed, <a class="indexterm" href="ChamplainPathLayer.html#champlain-path-layer-set-closed">champlain_path_layer_set_closed ()</a>
</dt>
<dt id="ientry-idp62033424">champlain_path_layer_set_dash, <a class="indexterm" href="ChamplainPathLayer.html#champlain-path-layer-set-dash">champlain_path_layer_set_dash ()</a>
</dt>
<dt id="ientry-idp61068720">champlain_path_layer_set_fill, <a class="indexterm" href="ChamplainPathLayer.html#champlain-path-layer-set-fill">champlain_path_layer_set_fill ()</a>
</dt>
<dt id="ientry-idp60989536">champlain_path_layer_set_fill_color, <a class="indexterm" href="ChamplainPathLayer.html#champlain-path-layer-set-fill-color">champlain_path_layer_set_fill_color ()</a>
</dt>
<dt id="ientry-idp61107136">champlain_path_layer_set_stroke, <a class="indexterm" href="ChamplainPathLayer.html#champlain-path-layer-set-stroke">champlain_path_layer_set_stroke ()</a>
</dt>
<dt id="ientry-idp61029184">champlain_path_layer_set_stroke_color, <a class="indexterm" href="ChamplainPathLayer.html#champlain-path-layer-set-stroke-color">champlain_path_layer_set_stroke_color ()</a>
</dt>
<dt id="ientry-idp61930816">champlain_path_layer_set_stroke_width, <a class="indexterm" href="ChamplainPathLayer.html#champlain-path-layer-set-stroke-width">champlain_path_layer_set_stroke_width ()</a>
</dt>
<dt id="ientry-idp61964512">champlain_path_layer_set_visible, <a class="indexterm" href="ChamplainPathLayer.html#champlain-path-layer-set-visible">champlain_path_layer_set_visible ()</a>
</dt>
<dt id="ientry-idp62668880">ChamplainPoint, <a class="indexterm" href="ChamplainPoint.html#ChamplainPoint-struct">struct ChamplainPoint</a>
</dt>
<dt id="ientry-idp62677728">ChamplainPoint:color, <a class="indexterm" href="ChamplainPoint.html#ChamplainPoint--color">The “color” property</a>
</dt>
<dt id="ientry-idp62683424">ChamplainPoint:size, <a class="indexterm" href="ChamplainPoint.html#ChamplainPoint--size">The “size” property</a>
</dt>
<dt id="ientry-idp54393296">champlain_point_get_color, <a class="indexterm" href="ChamplainPoint.html#champlain-point-get-color">champlain_point_get_color ()</a>
</dt>
<dt id="ientry-idp62649328">champlain_point_get_size, <a class="indexterm" href="ChamplainPoint.html#champlain-point-get-size">champlain_point_get_size ()</a>
</dt>
<dt id="ientry-idp54337920">champlain_point_new, <a class="indexterm" href="ChamplainPoint.html#champlain-point-new">champlain_point_new ()</a>
</dt>
<dt id="ientry-idp54348608">champlain_point_new_full, <a class="indexterm" href="ChamplainPoint.html#champlain-point-new-full">champlain_point_new_full ()</a>
</dt>
<dt id="ientry-idp54371632">champlain_point_set_color, <a class="indexterm" href="ChamplainPoint.html#champlain-point-set-color">champlain_point_set_color ()</a>
</dt>
<dt id="ientry-idp62628928">champlain_point_set_size, <a class="indexterm" href="ChamplainPoint.html#champlain-point-set-size">champlain_point_set_size ()</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>R</h3>
<dl>
<dt id="ientry-idp65627456">ChamplainRenderer, <a class="indexterm" href="ChamplainRenderer.html#ChamplainRenderer-struct">struct ChamplainRenderer</a>
</dt>
<dt id="ientry-idp66245568">champlain_renderer_render, <a class="indexterm" href="ChamplainRenderer.html#champlain-renderer-render">champlain_renderer_render ()</a>
</dt>
<dt id="ientry-idp65820464">champlain_renderer_set_data, <a class="indexterm" href="ChamplainRenderer.html#champlain-renderer-set-data">champlain_renderer_set_data ()</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>S</h3>
<dl>
<dt id="ientry-idp63404480">ChamplainScale, <a class="indexterm" href="ChamplainScale.html#ChamplainScale-struct">struct ChamplainScale</a>
</dt>
<dt id="ientry-idp63428656">ChamplainScale:max-width, <a class="indexterm" href="ChamplainScale.html#ChamplainScale--max-width">The “max-width” property</a>
</dt>
<dt id="ientry-idp63436656">ChamplainScale:unit, <a class="indexterm" href="ChamplainScale.html#ChamplainScale--unit">The “unit” property</a>
</dt>
<dt id="ientry-idp63363424">champlain_scale_connect_view, <a class="indexterm" href="ChamplainScale.html#champlain-scale-connect-view">champlain_scale_connect_view ()</a>
</dt>
<dt id="ientry-idp63385280">champlain_scale_disconnect_view, <a class="indexterm" href="ChamplainScale.html#champlain-scale-disconnect-view">champlain_scale_disconnect_view ()</a>
</dt>
<dt id="ientry-idp54616992">champlain_scale_get_max_width, <a class="indexterm" href="ChamplainScale.html#champlain-scale-get-max-width">champlain_scale_get_max_width ()</a>
</dt>
<dt id="ientry-idp63345360">champlain_scale_get_unit, <a class="indexterm" href="ChamplainScale.html#champlain-scale-get-unit">champlain_scale_get_unit ()</a>
</dt>
<dt id="ientry-idp54564896">champlain_scale_new, <a class="indexterm" href="ChamplainScale.html#champlain-scale-new">champlain_scale_new ()</a>
</dt>
<dt id="ientry-idp54575568">champlain_scale_set_max_width, <a class="indexterm" href="ChamplainScale.html#champlain-scale-set-max-width">champlain_scale_set_max_width ()</a>
</dt>
<dt id="ientry-idp54595920">champlain_scale_set_unit, <a class="indexterm" href="ChamplainScale.html#champlain-scale-set-unit">champlain_scale_set_unit ()</a>
</dt>
<dt id="ientry-idp54249136">ChamplainSelectionMode, <a class="indexterm" href="ChamplainMarkerLayer.html#ChamplainSelectionMode">enum ChamplainSelectionMode</a>
</dt>
<dt id="ientry-idp68058624">ChamplainState, <a class="indexterm" href="ChamplainTile.html#ChamplainState">enum ChamplainState</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>T</h3>
<dl>
<dt id="ientry-idp68077760">ChamplainTile, <a class="indexterm" href="ChamplainTile.html#ChamplainTile-struct">struct ChamplainTile</a>
</dt>
<dt id="ientry-idp68142272">ChamplainTile::render-complete, <a class="indexterm" href="ChamplainTile.html#ChamplainTile-render-complete">The “render-complete” signal</a>
</dt>
<dt id="ientry-idp68085456">ChamplainTile:content, <a class="indexterm" href="ChamplainTile.html#ChamplainTile--content">The “content” property</a>
</dt>
<dt id="ientry-idp68092672">ChamplainTile:etag, <a class="indexterm" href="ChamplainTile.html#ChamplainTile--etag">The “etag” property</a>
</dt>
<dt id="ientry-idp68099600">ChamplainTile:fade-in, <a class="indexterm" href="ChamplainTile.html#ChamplainTile--fade-in">The “fade-in” property</a>
</dt>
<dt id="ientry-idp68106208">ChamplainTile:size, <a class="indexterm" href="ChamplainTile.html#ChamplainTile--size">The “size” property</a>
</dt>
<dt id="ientry-idp68113200">ChamplainTile:state, <a class="indexterm" href="ChamplainTile.html#ChamplainTile--state">The “state” property</a>
</dt>
<dt id="ientry-idp68119808">ChamplainTile:x, <a class="indexterm" href="ChamplainTile.html#ChamplainTile--x">The “x” property</a>
</dt>
<dt id="ientry-idp68126800">ChamplainTile:y, <a class="indexterm" href="ChamplainTile.html#ChamplainTile--y">The “y” property</a>
</dt>
<dt id="ientry-idp68133792">ChamplainTile:zoom-level, <a class="indexterm" href="ChamplainTile.html#ChamplainTile--zoom-level">The “zoom-level” property</a>
</dt>
<dt id="ientry-idp65008608">ChamplainTileCache, <a class="indexterm" href="ChamplainTileCache.html#ChamplainTileCache-struct">struct ChamplainTileCache</a>
</dt>
<dt id="ientry-idp64105248">ChamplainTileSource, <a class="indexterm" href="ChamplainTileSource.html#ChamplainTileSource-struct">struct ChamplainTileSource</a>
</dt>
<dt id="ientry-idp64114208">ChamplainTileSource:cache, <a class="indexterm" href="ChamplainTileSource.html#ChamplainTileSource--cache">The “cache” property</a>
</dt>
<dt id="ientry-idp64121504">ChamplainTileSource:id, <a class="indexterm" href="ChamplainTileSource.html#ChamplainTileSource--id">The “id” property</a>
</dt>
<dt id="ientry-idp64129360">ChamplainTileSource:license, <a class="indexterm" href="ChamplainTileSource.html#ChamplainTileSource--license">The “license” property</a>
</dt>
<dt id="ientry-idp64137200">ChamplainTileSource:license-uri, <a class="indexterm" href="ChamplainTileSource.html#ChamplainTileSource--license-uri">The “license-uri” property</a>
</dt>
<dt id="ientry-idp64144992">ChamplainTileSource:max-zoom-level, <a class="indexterm" href="ChamplainTileSource.html#ChamplainTileSource--max-zoom-level">The “max-zoom-level” property</a>
</dt>
<dt id="ientry-idp64153120">ChamplainTileSource:min-zoom-level, <a class="indexterm" href="ChamplainTileSource.html#ChamplainTileSource--min-zoom-level">The “min-zoom-level” property</a>
</dt>
<dt id="ientry-idp64161248">ChamplainTileSource:name, <a class="indexterm" href="ChamplainTileSource.html#ChamplainTileSource--name">The “name” property</a>
</dt>
<dt id="ientry-idp64169088">ChamplainTileSource:projection, <a class="indexterm" href="ChamplainTileSource.html#ChamplainTileSource--projection">The “projection” property</a>
</dt>
<dt id="ientry-idp65359360">ChamplainTileSource:tile-size, <a class="indexterm" href="ChamplainTileSource.html#ChamplainTileSource--tile-size">The “tile-size” property</a>
</dt>
<dt id="ientry-idp64985536">champlain_tile_cache_on_tile_filled, <a class="indexterm" href="ChamplainTileCache.html#champlain-tile-cache-on-tile-filled">champlain_tile_cache_on_tile_filled ()</a>
</dt>
<dt id="ientry-idp64927952">champlain_tile_cache_refresh_tile_time, <a class="indexterm" href="ChamplainTileCache.html#champlain-tile-cache-refresh-tile-time">champlain_tile_cache_refresh_tile_time ()</a>
</dt>
<dt id="ientry-idp61439984">champlain_tile_cache_store_tile, <a class="indexterm" href="ChamplainTileCache.html#champlain-tile-cache-store-tile">champlain_tile_cache_store_tile ()</a>
</dt>
<dt id="ientry-idp68042848">champlain_tile_display_content, <a class="indexterm" href="ChamplainTile.html#champlain-tile-display-content">champlain_tile_display_content ()</a>
</dt>
<dt id="ientry-idp67938208">champlain_tile_get_content, <a class="indexterm" href="ChamplainTile.html#champlain-tile-get-content">champlain_tile_get_content ()</a>
</dt>
<dt id="ientry-idp67955296">champlain_tile_get_etag, <a class="indexterm" href="ChamplainTile.html#champlain-tile-get-etag">champlain_tile_get_etag ()</a>
</dt>
<dt id="ientry-idp67390880">champlain_tile_get_fade_in, <a class="indexterm" href="ChamplainTile.html#champlain-tile-get-fade-in">champlain_tile_get_fade_in ()</a>
</dt>
<dt id="ientry-idp67971216">champlain_tile_get_modified_time, <a class="indexterm" href="ChamplainTile.html#champlain-tile-get-modified-time">champlain_tile_get_modified_time ()</a>
</dt>
<dt id="ientry-idp67354128">champlain_tile_get_size, <a class="indexterm" href="ChamplainTile.html#champlain-tile-get-size">champlain_tile_get_size ()</a>
</dt>
<dt id="ientry-idp67372144">champlain_tile_get_state, <a class="indexterm" href="ChamplainTile.html#champlain-tile-get-state">champlain_tile_get_state ()</a>
</dt>
<dt id="ientry-idp67300144">champlain_tile_get_x, <a class="indexterm" href="ChamplainTile.html#champlain-tile-get-x">champlain_tile_get_x ()</a>
</dt>
<dt id="ientry-idp67318112">champlain_tile_get_y, <a class="indexterm" href="ChamplainTile.html#champlain-tile-get-y">champlain_tile_get_y ()</a>
</dt>
<dt id="ientry-idp67336112">champlain_tile_get_zoom_level, <a class="indexterm" href="ChamplainTile.html#champlain-tile-get-zoom-level">champlain_tile_get_zoom_level ()</a>
</dt>
<dt id="ientry-idp67259424">champlain_tile_new, <a class="indexterm" href="ChamplainTile.html#champlain-tile-new">champlain_tile_new ()</a>
</dt>
<dt id="ientry-idp67269904">champlain_tile_new_full, <a class="indexterm" href="ChamplainTile.html#champlain-tile-new-full">champlain_tile_new_full ()</a>
</dt>
<dt id="ientry-idp67987136">champlain_tile_set_content, <a class="indexterm" href="ChamplainTile.html#champlain-tile-set-content">champlain_tile_set_content ()</a>
</dt>
<dt id="ientry-idp68006032">champlain_tile_set_etag, <a class="indexterm" href="ChamplainTile.html#champlain-tile-set-etag">champlain_tile_set_etag ()</a>
</dt>
<dt id="ientry-idp67920304">champlain_tile_set_fade_in, <a class="indexterm" href="ChamplainTile.html#champlain-tile-set-fade-in">champlain_tile_set_fade_in ()</a>
</dt>
<dt id="ientry-idp68024064">champlain_tile_set_modified_time, <a class="indexterm" href="ChamplainTile.html#champlain-tile-set-modified-time">champlain_tile_set_modified_time ()</a>
</dt>
<dt id="ientry-idp67883248">champlain_tile_set_size, <a class="indexterm" href="ChamplainTile.html#champlain-tile-set-size">champlain_tile_set_size ()</a>
</dt>
<dt id="ientry-idp67901152">champlain_tile_set_state, <a class="indexterm" href="ChamplainTile.html#champlain-tile-set-state">champlain_tile_set_state ()</a>
</dt>
<dt id="ientry-idp67408864">champlain_tile_set_x, <a class="indexterm" href="ChamplainTile.html#champlain-tile-set-x">champlain_tile_set_x ()</a>
</dt>
<dt id="ientry-idp67847440">champlain_tile_set_y, <a class="indexterm" href="ChamplainTile.html#champlain-tile-set-y">champlain_tile_set_y ()</a>
</dt>
<dt id="ientry-idp67865344">champlain_tile_set_zoom_level, <a class="indexterm" href="ChamplainTile.html#champlain-tile-set-zoom-level">champlain_tile_set_zoom_level ()</a>
</dt>
<dt id="ientry-idp63560992">champlain_tile_source_get_cache, <a class="indexterm" href="ChamplainTileSource.html#champlain-tile-source-get-cache">champlain_tile_source_get_cache ()</a>
</dt>
<dt id="ientry-idp63539952">champlain_tile_source_set_cache, <a class="indexterm" href="ChamplainTileSource.html#champlain-tile-source-set-cache">champlain_tile_source_set_cache ()</a>
</dt>
<dt id="ientry-idp63940048">champlain_tile_source_set_id, <a class="indexterm" href="ChamplainTileSource.html#champlain-tile-source-set-id">champlain_tile_source_set_id ()</a>
</dt>
<dt id="ientry-idp63981168">champlain_tile_source_set_license, <a class="indexterm" href="ChamplainTileSource.html#champlain-tile-source-set-license">champlain_tile_source_set_license ()</a>
</dt>
<dt id="ientry-idp64001728">champlain_tile_source_set_license_uri, <a class="indexterm" href="ChamplainTileSource.html#champlain-tile-source-set-license-uri">champlain_tile_source_set_license_uri ()</a>
</dt>
<dt id="ientry-idp64042096">champlain_tile_source_set_max_zoom_level, <a class="indexterm" href="ChamplainTileSource.html#champlain-tile-source-set-max-zoom-level">champlain_tile_source_set_max_zoom_level ()</a>
</dt>
<dt id="ientry-idp64022016">champlain_tile_source_set_min_zoom_level, <a class="indexterm" href="ChamplainTileSource.html#champlain-tile-source-set-min-zoom-level">champlain_tile_source_set_min_zoom_level ()</a>
</dt>
<dt id="ientry-idp63960608">champlain_tile_source_set_name, <a class="indexterm" href="ChamplainTileSource.html#champlain-tile-source-set-name">champlain_tile_source_set_name ()</a>
</dt>
<dt id="ientry-idp64082736">champlain_tile_source_set_projection, <a class="indexterm" href="ChamplainTileSource.html#champlain-tile-source-set-projection">champlain_tile_source_set_projection ()</a>
</dt>
<dt id="ientry-idp64062320">champlain_tile_source_set_tile_size, <a class="indexterm" href="ChamplainTileSource.html#champlain-tile-source-set-tile-size">champlain_tile_source_set_tile_size ()</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>U</h3>
<dl><dt id="ientry-idp63410992">ChamplainUnit, <a class="indexterm" href="ChamplainScale.html#ChamplainUnit">enum ChamplainUnit</a>
</dt></dl>
</div>
<div class="indexdiv">
<h3>V</h3>
<dl>
<dt id="ientry-idp66289392">CHAMPLAIN_VERSION, <a class="indexterm" href="libchamplain-ChamplainVersion.html#CHAMPLAIN-VERSION:CAPS">CHAMPLAIN_VERSION</a>
</dt>
<dt id="ientry-idp66313168">CHAMPLAIN_VERSION_HEX, <a class="indexterm" href="libchamplain-ChamplainVersion.html#CHAMPLAIN-VERSION-HEX:CAPS">CHAMPLAIN_VERSION_HEX</a>
</dt>
<dt id="ientry-idp66293712">CHAMPLAIN_VERSION_S, <a class="indexterm" href="libchamplain-ChamplainVersion.html#CHAMPLAIN-VERSION-S:CAPS">CHAMPLAIN_VERSION_S</a>
</dt>
<dt id="ientry-idp60716224">ChamplainView, <a class="indexterm" href="ChamplainView.html#ChamplainView-struct">struct ChamplainView</a>
</dt>
<dt id="ientry-idp60854944">ChamplainView::animation-completed, <a class="indexterm" href="ChamplainView.html#ChamplainView-animation-completed">The “animation-completed” signal</a>
</dt>
<dt id="ientry-idp60873504">ChamplainView::layer-relocated, <a class="indexterm" href="ChamplainView.html#ChamplainView-layer-relocated">The “layer-relocated” signal</a>
</dt>
<dt id="ientry-idp60725328">ChamplainView:animate-zoom, <a class="indexterm" href="ChamplainView.html#ChamplainView--animate-zoom">The “animate-zoom” property</a>
</dt>
<dt id="ientry-idp60733104">ChamplainView:background-pattern, <a class="indexterm" href="ChamplainView.html#ChamplainView--background-pattern">The “background-pattern” property</a>
</dt>
<dt id="ientry-idp60740608">ChamplainView:deceleration, <a class="indexterm" href="ChamplainView.html#ChamplainView--deceleration">The “deceleration” property</a>
</dt>
<dt id="ientry-idp60748800">ChamplainView:goto-animation-duration, <a class="indexterm" href="ChamplainView.html#ChamplainView--goto-animation-duration">The “goto-animation-duration” property</a>
</dt>
<dt id="ientry-idp60757088">ChamplainView:goto-animation-mode, <a class="indexterm" href="ChamplainView.html#ChamplainView--goto-animation-mode">The “goto-animation-mode” property</a>
</dt>
<dt id="ientry-idp60764848">ChamplainView:keep-center-on-resize, <a class="indexterm" href="ChamplainView.html#ChamplainView--keep-center-on-resize">The “keep-center-on-resize” property</a>
</dt>
<dt id="ientry-idp60772672">ChamplainView:kinetic-mode, <a class="indexterm" href="ChamplainView.html#ChamplainView--kinetic-mode">The “kinetic-mode” property</a>
</dt>
<dt id="ientry-idp60780336">ChamplainView:latitude, <a class="indexterm" href="ChamplainView.html#ChamplainView--latitude">The “latitude” property</a>
</dt>
<dt id="ientry-idp60788544">ChamplainView:longitude, <a class="indexterm" href="ChamplainView.html#ChamplainView--longitude">The “longitude” property</a>
</dt>
<dt id="ientry-idp60796720">ChamplainView:map-source, <a class="indexterm" href="ChamplainView.html#ChamplainView--map-source">The “map-source” property</a>
</dt>
<dt id="ientry-idp60804992">ChamplainView:max-zoom-level, <a class="indexterm" href="ChamplainView.html#ChamplainView--max-zoom-level">The “max-zoom-level” property</a>
</dt>
<dt id="ientry-idp60813184">ChamplainView:min-zoom-level, <a class="indexterm" href="ChamplainView.html#ChamplainView--min-zoom-level">The “min-zoom-level” property</a>
</dt>
<dt id="ientry-idp60821296">ChamplainView:state, <a class="indexterm" href="ChamplainView.html#ChamplainView--state">The “state” property</a>
</dt>
<dt id="ientry-idp60829040">ChamplainView:world, <a class="indexterm" href="ChamplainView.html#ChamplainView--world">The “world” property</a>
</dt>
<dt id="ientry-idp60837152">ChamplainView:zoom-level, <a class="indexterm" href="ChamplainView.html#ChamplainView--zoom-level">The “zoom-level” property</a>
</dt>
<dt id="ientry-idp60845296">ChamplainView:zoom-on-double-click, <a class="indexterm" href="ChamplainView.html#ChamplainView--zoom-on-double-click">The “zoom-on-double-click” property</a>
</dt>
<dt id="ientry-idp60164064">champlain_view_add_layer, <a class="indexterm" href="ChamplainView.html#champlain-view-add-layer">champlain_view_add_layer ()</a>
</dt>
<dt id="ientry-idp59970768">champlain_view_add_overlay_source, <a class="indexterm" href="ChamplainView.html#champlain-view-add-overlay-source">champlain_view_add_overlay_source ()</a>
</dt>
<dt id="ientry-idp60558000">champlain_view_bin_layout_add, <a class="indexterm" href="ChamplainView.html#champlain-view-bin-layout-add">champlain_view_bin_layout_add ()</a>, <a class="indexterm" href="ChamplainView.html#champlain-view-bin-layout-add">champlain_view_bin_layout_add ()</a>
</dt>
<dt id="ientry-idp56423184">champlain_view_center_on, <a class="indexterm" href="ChamplainView.html#champlain-view-center-on">champlain_view_center_on ()</a>
</dt>
<dt id="ientry-idp59926592">champlain_view_ensure_layers_visible, <a class="indexterm" href="ChamplainView.html#champlain-view-ensure-layers-visible">champlain_view_ensure_layers_visible ()</a>
</dt>
<dt id="ientry-idp59902080">champlain_view_ensure_visible, <a class="indexterm" href="ChamplainView.html#champlain-view-ensure-visible">champlain_view_ensure_visible ()</a>
</dt>
<dt id="ientry-idp60355376">champlain_view_get_animate_zoom, <a class="indexterm" href="ChamplainView.html#champlain-view-get-animate-zoom">champlain_view_get_animate_zoom ()</a>
</dt>
<dt id="ientry-idp60373600">champlain_view_get_background_pattern, <a class="indexterm" href="ChamplainView.html#champlain-view-get-background-pattern">champlain_view_get_background_pattern ()</a>
</dt>
<dt id="ientry-idp60650720">champlain_view_get_bounding_box, <a class="indexterm" href="ChamplainView.html#champlain-view-get-bounding-box">champlain_view_get_bounding_box ()</a>
</dt>
<dt id="ientry-idp60670912">champlain_view_get_bounding_box_for_zoom_level, <a class="indexterm" href="ChamplainView.html#champlain-view-get-bounding-box-for-zoom-level">champlain_view_get_bounding_box_for_zoom_level ()</a>
</dt>
<dt id="ientry-idp60614448">champlain_view_get_center_latitude, <a class="indexterm" href="ChamplainView.html#champlain-view-get-center-latitude">champlain_view_get_center_latitude ()</a>
</dt>
<dt id="ientry-idp60632576">champlain_view_get_center_longitude, <a class="indexterm" href="ChamplainView.html#champlain-view-get-center-longitude">champlain_view_get_center_longitude ()</a>
</dt>
<dt id="ientry-idp60282464">champlain_view_get_deceleration, <a class="indexterm" href="ChamplainView.html#champlain-view-get-deceleration">champlain_view_get_deceleration ()</a>
</dt>
<dt id="ientry-idp60318848">champlain_view_get_keep_center_on_resize, <a class="indexterm" href="ChamplainView.html#champlain-view-get-keep-center-on-resize">champlain_view_get_keep_center_on_resize ()</a>
</dt>
<dt id="ientry-idp60300592">champlain_view_get_kinetic_mode, <a class="indexterm" href="ChamplainView.html#champlain-view-get-kinetic-mode">champlain_view_get_kinetic_mode ()</a>
</dt>
<dt id="ientry-idp60593200">champlain_view_get_license_actor, <a class="indexterm" href="ChamplainView.html#champlain-view-get-license-actor">champlain_view_get_license_actor ()</a>
</dt>
<dt id="ientry-idp60261040">champlain_view_get_map_source, <a class="indexterm" href="ChamplainView.html#champlain-view-get-map-source">champlain_view_get_map_source ()</a>
</dt>
<dt id="ientry-idp60242832">champlain_view_get_max_zoom_level, <a class="indexterm" href="ChamplainView.html#champlain-view-get-max-zoom-level">champlain_view_get_max_zoom_level ()</a>
</dt>
<dt id="ientry-idp60224624">champlain_view_get_min_zoom_level, <a class="indexterm" href="ChamplainView.html#champlain-view-get-min-zoom-level">champlain_view_get_min_zoom_level ()</a>
</dt>
<dt id="ientry-idp60017888">champlain_view_get_overlay_sources, <a class="indexterm" href="ChamplainView.html#champlain-view-get-overlay-sources">champlain_view_get_overlay_sources ()</a>
</dt>
<dt id="ientry-idp60696432">champlain_view_get_state, <a class="indexterm" href="ChamplainView.html#champlain-view-get-state">champlain_view_get_state ()</a>
</dt>
<dt id="ientry-idp60531552">champlain_view_get_viewport_origin, <a class="indexterm" href="ChamplainView.html#champlain-view-get-viewport-origin">champlain_view_get_viewport_origin ()</a>
</dt>
<dt id="ientry-idp59881712">champlain_view_get_world, <a class="indexterm" href="ChamplainView.html#champlain-view-get-world">champlain_view_get_world ()</a>
</dt>
<dt id="ientry-idp60206432">champlain_view_get_zoom_level, <a class="indexterm" href="ChamplainView.html#champlain-view-get-zoom-level">champlain_view_get_zoom_level ()</a>
</dt>
<dt id="ientry-idp60337184">champlain_view_get_zoom_on_double_click, <a class="indexterm" href="ChamplainView.html#champlain-view-get-zoom-on-double-click">champlain_view_get_zoom_on_double_click ()</a>
</dt>
<dt id="ientry-idp59732352">champlain_view_go_to, <a class="indexterm" href="ChamplainView.html#champlain-view-go-to">champlain_view_go_to ()</a>
</dt>
<dt id="ientry-idp60509616">champlain_view_latitude_to_y, <a class="indexterm" href="ChamplainView.html#champlain-view-latitude-to-y">champlain_view_latitude_to_y ()</a>
</dt>
<dt id="ientry-idp60487664">champlain_view_longitude_to_x, <a class="indexterm" href="ChamplainView.html#champlain-view-longitude-to-x">champlain_view_longitude_to_x ()</a>
</dt>
<dt id="ientry-idp56411664">champlain_view_new, <a class="indexterm" href="ChamplainView.html#champlain-view-new">champlain_view_new ()</a>
</dt>
<dt id="ientry-idp60393088">champlain_view_reload_tiles, <a class="indexterm" href="ChamplainView.html#champlain-view-reload-tiles">champlain_view_reload_tiles ()</a>
</dt>
<dt id="ientry-idp60185280">champlain_view_remove_layer, <a class="indexterm" href="ChamplainView.html#champlain-view-remove-layer">champlain_view_remove_layer ()</a>
</dt>
<dt id="ientry-idp59995904">champlain_view_remove_overlay_source, <a class="indexterm" href="ChamplainView.html#champlain-view-remove-overlay-source">champlain_view_remove_overlay_source ()</a>
</dt>
<dt id="ientry-idp60122224">champlain_view_set_animate_zoom, <a class="indexterm" href="ChamplainView.html#champlain-view-set-animate-zoom">champlain_view_set_animate_zoom ()</a>
</dt>
<dt id="ientry-idp60143456">champlain_view_set_background_pattern, <a class="indexterm" href="ChamplainView.html#champlain-view-set-background-pattern">champlain_view_set_background_pattern ()</a>
</dt>
<dt id="ientry-idp60037776">champlain_view_set_deceleration, <a class="indexterm" href="ChamplainView.html#champlain-view-set-deceleration">champlain_view_set_deceleration ()</a>
</dt>
<dt id="ientry-idp60079664">champlain_view_set_keep_center_on_resize, <a class="indexterm" href="ChamplainView.html#champlain-view-set-keep-center-on-resize">champlain_view_set_keep_center_on_resize ()</a>
</dt>
<dt id="ientry-idp60059104">champlain_view_set_kinetic_mode, <a class="indexterm" href="ChamplainView.html#champlain-view-set-kinetic-mode">champlain_view_set_kinetic_mode ()</a>
</dt>
<dt id="ientry-idp59947152">champlain_view_set_map_source, <a class="indexterm" href="ChamplainView.html#champlain-view-set-map-source">champlain_view_set_map_source ()</a>
</dt>
<dt id="ientry-idp59838784">champlain_view_set_max_zoom_level, <a class="indexterm" href="ChamplainView.html#champlain-view-set-max-zoom-level">champlain_view_set_max_zoom_level ()</a>
</dt>
<dt id="ientry-idp59818304">champlain_view_set_min_zoom_level, <a class="indexterm" href="ChamplainView.html#champlain-view-set-min-zoom-level">champlain_view_set_min_zoom_level ()</a>
</dt>
<dt id="ientry-idp59859264">champlain_view_set_world, <a class="indexterm" href="ChamplainView.html#champlain-view-set-world">champlain_view_set_world ()</a>
</dt>
<dt id="ientry-idp59797808">champlain_view_set_zoom_level, <a class="indexterm" href="ChamplainView.html#champlain-view-set-zoom-level">champlain_view_set_zoom_level ()</a>
</dt>
<dt id="ientry-idp60101008">champlain_view_set_zoom_on_double_click, <a class="indexterm" href="ChamplainView.html#champlain-view-set-zoom-on-double-click">champlain_view_set_zoom_on_double_click ()</a>
</dt>
<dt id="ientry-idp59753744">champlain_view_stop_go_to, <a class="indexterm" href="ChamplainView.html#champlain-view-stop-go-to">champlain_view_stop_go_to ()</a>
</dt>
<dt id="ientry-idp60409472">champlain_view_to_surface, <a class="indexterm" href="ChamplainView.html#champlain-view-to-surface">champlain_view_to_surface ()</a>
</dt>
<dt id="ientry-idp60443760">champlain_view_x_to_longitude, <a class="indexterm" href="ChamplainView.html#champlain-view-x-to-longitude">champlain_view_x_to_longitude ()</a>
</dt>
<dt id="ientry-idp60465712">champlain_view_y_to_latitude, <a class="indexterm" href="ChamplainView.html#champlain-view-y-to-latitude">champlain_view_y_to_latitude ()</a>
</dt>
<dt id="ientry-idp59768384">champlain_view_zoom_in, <a class="indexterm" href="ChamplainView.html#champlain-view-zoom-in">champlain_view_zoom_in ()</a>
</dt>
<dt id="ientry-idp59782912">champlain_view_zoom_out, <a class="indexterm" href="ChamplainView.html#champlain-view-zoom-out">champlain_view_zoom_out ()</a>
</dt>
</dl>
</div>
</div>
</div>
<div class="footer">
<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>