|
Last change
on this file since 406 was
1,
checked in by myroslav, 21 years ago
|
|
Building directory structure
|
-
Property svn:eol-style set to
native
|
|
File size:
658 bytes
|
| Line | |
|---|
| 1 | from zope.interface import Interface |
|---|
| 2 | |
|---|
| 3 | class IGEOMap(Interface): |
|---|
| 4 | """GEO Map options |
|---|
| 5 | """ |
|---|
| 6 | |
|---|
| 7 | def getMapCenter(): |
|---|
| 8 | """ return map center """ |
|---|
| 9 | |
|---|
| 10 | def getMapZoom(): |
|---|
| 11 | """ return map zoom """ |
|---|
| 12 | |
|---|
| 13 | def getMapType(): |
|---|
| 14 | """ return map type """ |
|---|
| 15 | |
|---|
| 16 | def setMap(mapcenter, mapzoom, maptype): |
|---|
| 17 | """ set map options """ |
|---|
| 18 | |
|---|
| 19 | class IGEOMapView(Interface): |
|---|
| 20 | """browser view |
|---|
| 21 | """ |
|---|
| 22 | |
|---|
| 23 | def editMapOptions(mapcenter, mapzoom, maptype): |
|---|
| 24 | """ update map options """ |
|---|
| 25 | |
|---|
| 26 | def getMapCenter(): |
|---|
| 27 | """ return map center """ |
|---|
| 28 | |
|---|
| 29 | def getMapZoom(): |
|---|
| 30 | """ return map zoom """ |
|---|
| 31 | |
|---|
| 32 | def getMapType(): |
|---|
| 33 | """ return map type """ |
|---|
Note: See
TracBrowser
for help on using the repository browser.