- ECMap
- Purchase - Contact
- Use License
- Installation
- Positioning
- Card Type
- Controls
- Location
- Places
- Import / Export
- Overlays
- Groups
- StreetView
- EarthView
- Panoramio
- DistanceMatrix
- TECMapAdressEdit
- TECStaticMap
- Programming
- Table of Figures
- Glossary
Property type TECMapStreetView StreetView enables you to manage the display StreetView
Not available CloudMade
22TECMapStreetView
It gives access to properties and methods
Change the position of the point of view
Trigger events OnStreetViewPosition and OnStreetViewAvailable
Property read / write for the show or not to StreetView
Raises the event OnStreetViewVisible
Property read / write to define the viewing direction of camera, 0° = North, 90° = East, 180° = South et 270° = West
Raises the event OnStreetViewPOV
Property read / write to set the vertical rotation of the camera, to 90° at -90°
Raises the event OnStreetViewPOVProperty read / write to set the zoom level
Raises the event OnStreetViewPOV
Property read / write sets the position of the control bar
Possible values are :
- cpTopLeft
- cpTopCenter
- cpTopRight,
- cpRightTop
- cpRightCenter
- cpRightBottom
- cpBottomRight
- cpBottomCenter
- cpBottomLeft
- cpLeftBottom
- cpLeftCenter
- cpLeftTop
Property read / write to style the control bar
You have the choice between :
- DEFAULT
- ANDROID
- LARGE
- SMALL
// Delphi
map streetview component ECMap
// show streetView
layer
map.StreetView.visible := true;
map.StreetView.SetPosition(map.latitude,map.longitude);
// controls ANDROID
map.StreetView.NavigationStyle := 'ANDROID';
// redraw for update
controls
map.StreetView.reDraw;
Events
Triggered when the view becomes visible StreetView is not visible
The closure of the X button to trigger this event with bVisible to false
45