return 0;
}
+int maps_plugin_set_tilt_angle(maps_view_h view, double tilt_angle)
+{
+ return 0;
+}
+
+int maps_plugin_get_min_tilt_angle(maps_view_h view, double *min_tilt_angle)
+{
+ return 0;
+}
+
+int maps_plugin_get_max_tilt_angle(maps_view_h view, double *max_tilt_angle)
+{
+ return 0;
+}
+
/* Interface of a plugin with all empty functions */
plugin::interface_s empty_interface = {
/* Plugin dedicated functions */
maps_plugin_get_max_zoom_level_empty,
maps_plugin_get_center_empty,
maps_plugin_capture_snapshot_empty,
+ maps_plugin_set_tilt_angle,
+ maps_plugin_get_min_tilt_angle,
+ maps_plugin_get_max_tilt_angle,
};