com.supermap.mapping
Interface MapParameterChangedListener
-
public interface MapParameterChangedListener
The map parameter changed listener.is used to inform the user map range and scale changes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description void
angleChanged(double newAngle)
Angle change monitorvoid
boundsChanged(Point2D newMapCenter)
Listens to the map bounds change.void
scaleChanged(double newScale)
Listens to the scale change.void
sizeChanged(int width, int height)
Size change monitor
-
-
-
Method Detail
-
scaleChanged
void scaleChanged(double newScale)
Listens to the scale change.- Parameters:
newScale
- new scale.
-
boundsChanged
void boundsChanged(Point2D newMapCenter)
Listens to the map bounds change.- Parameters:
newMapCenter
- new map center point.
-
angleChanged
void angleChanged(double newAngle)
Angle change monitor- Parameters:
newAngle
- new angle
-
sizeChanged
void sizeChanged(int width, int height)
Size change monitor- Parameters:
width
- widthheight
- high
-
-