mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-16 00:03:12 -04:00
Updated sip bindings to match changes in r11825
git-svn-id: http://svn.osgeo.org/qgis/trunk@11827 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
parent
9d3f9f8715
commit
e99592f10b
@ -70,13 +70,18 @@ public:
|
|||||||
//! description strings for feature types
|
//! description strings for feature types
|
||||||
//static const char *qgisFeatureTypes[];
|
//static const char *qgisFeatureTypes[];
|
||||||
|
|
||||||
//! map units that qgis supports
|
/** Map units that qgis supports
|
||||||
|
* @note that QGIS < 1.4 api had only Meters, Feet, Degrees and UnknownUnit
|
||||||
|
*/
|
||||||
enum UnitType
|
enum UnitType
|
||||||
{
|
{
|
||||||
Meters,
|
Meters = 0,
|
||||||
Feet,
|
Feet = 1,
|
||||||
Degrees,
|
Degrees = 2, //for 1.0 api backwards compatibility
|
||||||
UnknownUnit
|
DecimalDegrees = 2,
|
||||||
|
DegreesMinutesSeconds = 4,
|
||||||
|
DegreesDecimalMinutes = 5,
|
||||||
|
UnknownUnit = 3
|
||||||
} ;
|
} ;
|
||||||
|
|
||||||
//! User defined event types
|
//! User defined event types
|
||||||
|
Loading…
x
Reference in New Issue
Block a user