* on the map using #champlain_base_marker_set_position.
*
* champlain has a more evoluted type of markers with text and image support.
- * See #champlainmarker.
+ * See #ChamplainMarker.
*/
#include "config.h"
/**
* champlain_view_new:
+ *
* Returns a new #ChamplainView ready to be used as a #ClutterActor.
*
* Since: 0.4
/**
* champlain_view_set_min_zoom_level:
* @view: a #ChamplainView
- * @min_zoom_level: a gint
+ * @zoom_level: a gint
*
* Changes the lowest allowed zoom level
*
/**
* champlain_view_set_max_zoom_level:
* @view: a #ChamplainView
- * @max_zoom_level: a gint
+ * @zoom_level: a gint
*
* Changes the highest allowed zoom level
*
* champlain_view_get_coords_from_event:
* @view: a #ChamplainView
* @event: a #ClutterEvent
- * @latitude: a variable where to put the latitude of the event
- * @longitude: a variable where to put the longitude of the event
+ * @lat: a variable where to put the latitude of the event
+ * @lon: a variable where to put the longitude of the event
*
* Returns the latitude, longitude coordinates for the given ClutterEvent.
*
* @view: a #ChamplainView
* @x: the x position in the view
* @y: the y position in the view
- * @latitude: a variable where to put the latitude of the event
- * @longitude: a variable where to put the longitude of the event
+ * @lat: a variable where to put the latitude of the event
+ * @lon: a variable where to put the longitude of the event
*
* Returns the latitude, longitude coordinates for the given x, y position in
* the view. Use if you get coordinates from GtkEvents for example.
/**
* champlain_view_set_map_source:
* @view: a #ChamplainView
- * @source: a #ChamplainMapSource
+ * @map_source: a #ChamplainMapSource
*
* Changes the currently used map source. #g_object_unref will be called on
* the previous one.
* @lon1: the longitude of position 1
* @lat2: the latitude of position 2
* @lon2: the longitude of position 2
+ * @animate: a #gboolean
*
* Changes the map's zoom level and center to make sure the two given
* positions are visible
* champlain_view_ensure_markers_visible:
* @view: a #ChamplainView
* @markers: a NULL terminated array of #ChamplainMarkers
+ * @animate: a #gboolean
*
* Changes the map's zoom level and center to make sure those markers are
* visible.
}
/**
- * champlain_view_get_keep_center_on_resize:
+ * champlain_view_get_show_license:
* @view: The view
*
* Returns TRUE if the view displays the license.
gdouble longitude);
void champlain_view_stop_go_to (ChamplainView *view);
-void champlain_view_zoom_in (ChamplainView *champlainView);
-void champlain_view_zoom_out (ChamplainView *champlainView);
-void champlain_view_set_zoom_level (ChamplainView *champlainView,
+void champlain_view_zoom_in (ChamplainView *view);
+void champlain_view_zoom_out (ChamplainView *view);
+void champlain_view_set_zoom_level (ChamplainView *view,
gint zoom_level);
void champlain_view_set_min_zoom_level (ChamplainView *view,
gint zoom_level);
ChamplainBaseMarker *markers[],
gboolean animate);
-void champlain_view_set_map_source (ChamplainView *champlainView,
+void champlain_view_set_map_source (ChamplainView *view,
ChamplainMapSource *map_source);
void champlain_view_set_size (ChamplainView *view,
guint width,
void champlain_view_set_zoom_on_double_click (ChamplainView *view,
gboolean value);
-void champlain_view_add_layer (ChamplainView *champlainView,
+void champlain_view_add_layer (ChamplainView *view,
ChamplainLayer *layer);
gboolean champlain_view_get_coords_from_event (ChamplainView *view,
champlain_view_stop_go_to
champlain_view_zoom_in
champlain_view_zoom_out
-champlain_view_set_zoom_level
-champlain_view_set_min_zoom_level
-champlain_view_set_max_zoom_level
champlain_view_ensure_visible
champlain_view_ensure_markers_visible
+champlain_view_set_min_zoom_level
+champlain_view_get_min_zoom_level
+champlain_view_set_max_zoom_level
+champlain_view_get_max_zoom_level
champlain_view_set_map_source
+champlain_view_get_map_source
champlain_view_set_size
champlain_view_set_decel_rate
+champlain_view_get_decel_rate
champlain_view_set_scroll_mode
+champlain_view_get_scroll_mode
champlain_view_set_keep_center_on_resize
+champlain_view_get_keep_center_on_resize
champlain_view_set_show_license
+champlain_view_get_show_license
+champlain_view_set_zoom_level
+champlain_view_get_zoom_level
champlain_view_set_zoom_on_double_click
+champlain_view_get_zoom_on_double_click
champlain_view_add_layer
champlain_view_get_coords_from_event
champlain_view_get_coords_at
-champlain_view_get_decel_rate
-champlain_view_get_keep_center_on_resize
-champlain_view_get_map_source
-champlain_view_get_max_zoom_level
-champlain_view_get_min_zoom_level
-champlain_view_get_scroll_mode
-champlain_view_get_show_license
-champlain_view_get_zoom_level
-champlain_view_get_zoom_on_double_click
champlain_view_add_polygon
champlain_view_remove_polygon
<SUBSECTION Standard>
CHAMPLAIN_VIEW_CLASS
CHAMPLAIN_IS_VIEW_CLASS
CHAMPLAIN_VIEW_GET_CLASS
+<SUBSECTION Private>
+ChamplainViewPrivate
</SECTION>
<SECTION>