コード例 #1
0
ファイル: Interop.View.cs プロジェクト: yunmiha/TizenFX
 internal static extern ErrorCode RemoveAllObjects(this ViewHandle /* maps_view_h */ view);
コード例 #2
0
ファイル: Interop.View.cs プロジェクト: yunmiha/TizenFX
 internal static extern ErrorCode ForeachObject(ViewHandle /* maps_view_h */ view, ViewObjectCallback callback, IntPtr /* void */ userData);
コード例 #3
0
ファイル: Interop.View.cs プロジェクト: yunmiha/TizenFX
 internal static extern ErrorCode SetScaleBarEnabled(this ViewHandle /* maps_view_h */ view, bool enable);
コード例 #4
0
ファイル: Interop.View.cs プロジェクト: yunmiha/TizenFX
 internal static extern ErrorCode SetVisibility(this ViewHandle /* maps_view_h */ view, bool visible);
コード例 #5
0
ファイル: Interop.View.cs プロジェクト: yunmiha/TizenFX
 internal static extern ErrorCode GetMapType(this ViewHandle /* maps_view_h */ view, out ViewType /* maps_view_type_e */ type);
コード例 #6
0
ファイル: Interop.View.cs プロジェクト: yunmiha/TizenFX
 internal static extern ErrorCode SetTrafficEnabled(this ViewHandle /* maps_view_h */ view, bool enable);
コード例 #7
0
ファイル: Interop.View.cs プロジェクト: yunmiha/TizenFX
 internal static extern ErrorCode UnsetEventCb(this ViewHandle /* maps_view_h */ view, ViewEventType /* maps_view_event_type_e */ type);
コード例 #8
0
ファイル: Interop.View.cs プロジェクト: yunmiha/TizenFX
 internal static extern ErrorCode SetOrientation(this ViewHandle /* maps_view_h */ view, double rotationAngle);
コード例 #9
0
ファイル: Interop.View.cs プロジェクト: yunmiha/TizenFX
 internal static extern ErrorCode SetGestureEnabled(this ViewHandle /* maps_view_h */ view, ViewGesture /* maps_view_gesture_e */ gesture, bool enabled);
コード例 #10
0
ファイル: Interop.View.cs プロジェクト: yunmiha/TizenFX
 internal static extern ErrorCode SetEventCb(this ViewHandle /* maps_view_h */ view, ViewEventType /* maps_view_event_type_e */ type, ViewOnEventCallback callback, IntPtr /* void */ userData);
コード例 #11
0
ファイル: Interop.View.cs プロジェクト: yunmiha/TizenFX
 internal static extern ErrorCode SetCenter(this ViewHandle /* maps_view_h */ view, CoordinatesHandle /* maps_coordinates_h */ coordinates);
コード例 #12
0
ファイル: Interop.View.cs プロジェクト: yunmiha/TizenFX
 internal static extern ErrorCode GetCenter(this ViewHandle /* maps_view_h */ view, out IntPtr /* maps_coordinates_h */ coordinates);
コード例 #13
0
ファイル: Interop.View.cs プロジェクト: yunmiha/TizenFX
 internal static extern ErrorCode GetViewport(this ViewHandle /* maps_view_h */ view, out IntPtr viewport);
コード例 #14
0
ファイル: Interop.View.cs プロジェクト: yunmiha/TizenFX
 internal static extern ErrorCode GetMinZoomLevel(this ViewHandle /* maps_view_h */ view, out int minZoomLevel);
コード例 #15
0
ファイル: Interop.View.cs プロジェクト: yunmiha/TizenFX
 internal static extern ErrorCode ScreenToGeolocation(this ViewHandle /* maps_view_h */ view, int x, int y, out IntPtr /* maps_coordinates_h */ coordinates);
コード例 #16
0
ファイル: Interop.View.cs プロジェクト: yunmiha/TizenFX
 internal static extern ErrorCode SetMaxZoomLevel(this ViewHandle /* maps_view_h */ view, int maxZoomLevel);
コード例 #17
0
ファイル: Interop.View.cs プロジェクト: yunmiha/TizenFX
 internal static extern ErrorCode GeolocationToScreen(this ViewHandle /* maps_view_h */ view, CoordinatesHandle /* maps_coordinates_h */ coordinates, out int x, out int y);
コード例 #18
0
ファイル: Interop.View.cs プロジェクト: yunmiha/TizenFX
 internal static extern ErrorCode SetLanguage(this ViewHandle /* maps_view_h */ view, string language);
コード例 #19
0
ファイル: Interop.View.cs プロジェクト: yunmiha/TizenFX
 internal static extern ErrorCode Move(this ViewHandle /* maps_view_h */ view, int x, int y);
コード例 #20
0
ファイル: Interop.View.cs プロジェクト: yunmiha/TizenFX
 internal static extern ErrorCode SetBuildingsEnabled(this ViewHandle /* maps_view_h */ view, bool enable);
コード例 #21
0
ファイル: Interop.View.cs プロジェクト: yunmiha/TizenFX
 internal static extern ErrorCode Resize(this ViewHandle /* maps_view_h */ view, int width, int height);
コード例 #22
0
ファイル: Interop.View.cs プロジェクト: yunmiha/TizenFX
 internal static extern ErrorCode SetPublicTransitEnabled(this ViewHandle /* maps_view_h */ view, bool enable);
コード例 #23
0
ファイル: Interop.View.cs プロジェクト: yunmiha/TizenFX
 internal static extern ErrorCode RemoveObject(this ViewHandle /* maps_view_h */ view, ViewObjectHandle /* maps_view_object_h */ viewObject);
コード例 #24
0
ファイル: Interop.View.cs プロジェクト: yunmiha/TizenFX
 internal static extern ErrorCode SetScreenLocation(this ViewHandle /* maps_view_h */ view, int x, int y, int width, int height);
コード例 #25
0
 internal static extern ErrorCode ViewCaptureSnapshot(ViewHandle /* maps_view_h */ view, ViewSnapshotFormatType /* maps_view_snapshot_format_type_e */ type, int quality, string path);