- GtkMapserver *gtk_mapserver = GTK_MAPSERVER (user_data);
- GtkMapserverPrivate *priv = GTK_MAPSERVER_GET_PRIVATE (gtk_mapserver);
+ GtkMapserver *gtkm = GTK_MAPSERVER (user_data);
+ GtkMapserverPrivate *priv = GTK_MAPSERVER_GET_PRIVATE (gtkm);
+
+ gdouble x;
+ gdouble y;
+ gdouble scale;
+ gdouble rotation;
+
+ goo_canvas_item_get_simple_transform (priv->img,
+ &x,
+ &y,
+ &scale,
+ &rotation);
+
+ if (x == 0.0 && y == 0.0)
+ {
+ return FALSE;
+ }
+ priv->ext_cur->minx -= (x * priv->canvas_to_ext_x);
+ priv->ext_cur->miny += (y * priv->canvas_to_ext_y);
+ priv->ext_cur->maxx -= (x * priv->canvas_to_ext_x);
+ priv->ext_cur->maxy += (y * priv->canvas_to_ext_y);
+
+ gtk_mapserver_event_occurred (gtkm);