Community
All Communities
Products
ArcGIS Pro
ArcGIS Survey123
ArcGIS Online
ArcGIS Enterprise
Data Management
ArcGIS Experience Builder
Geoprocessing
ArcGIS Web AppBuilder
ArcGIS Field Maps
ArcGIS Dashboards
ArcGIS StoryMaps
All Products Communities
Industries
Education
Water Resources
State & Local Government
Transportation
Gas and Pipeline
Water Utilities
Roads and Highways
Telecommunications
Natural Resources
Imagery and Remote Sensing Insights (IRIS) COP
Electric
All Industries Communities
Developers
Python
JavaScript Maps SDK
Native Maps SDKs
ArcGIS API for Python
ArcGIS Pro SDK
ArcObjects SDK
Developers - General
ArcGIS REST APIs and Services
ArcGIS Online Developers
Game Engine Maps SDKs
File Geodatabase API
All Developers Communities
Global
Comunidad Esri Colombia - Ecuador - Panamá
ArcGIS 開発者コミュニティ
Czech GIS
ArcNesia
Europe
Asia Pacific
Americas
Esri India
Comunidad GEOTEC
GeoDev Germany
ArcGIS Content - Esri Nederland
All Global Communities
All Communities
Developers
User Groups
Industries
Services
Community Resources
Global
Events
Learning
Networks
ArcGIS Topics
Products
View All Communities
ArcGIS Ideas
GIS Life
Community Resources
Community Help Documents
Community Blog
Community Feedback
Member Introductions
All Community Resources
Sign In
cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
Show
only
|
Search instead for
Did you mean:
Cancel
Home
:
All Communities
:
Developers
:
Native Maps SDKs
:
Runtime SDK for iOS Questions
:
How do I retrieve the xy coordinates of a newly cr...
Options
Subscribe to RSS Feed
Mark Topic as New
Mark Topic as Read
Float this Topic for Current User
Bookmark
Subscribe
Mute
Printer Friendly Page
Select to view content in your preferred language
Translate Now
How do I retrieve the xy coordinates of a newly created point graphic?
Subscribe
2268
2
Jump to solution
08-22-2012 08:28 AM
by
deleted-user-4b
dbdJY7UQ_i
Deactivated User
08-22-2012
08:28 AM
Mark as New
Bookmark
Subscribe
Mute
Subscribe to RSS Feed
Permalink
Print
Hi All,
I am trying to send the xy coordinates information from a newly created point feature to pre-populate a couple of fields in my form.
I am pulling my hair out trying to figure out how to get the xy data at the time of point creation (without additional screen taps).
Any help is welcome!
Mark
Solved!
Go to Solution.
Tags
(2)
Tags:
ios
native_app_developers
Reply
0
Kudos
All Posts
Previous Topic
Next Topic
1 Solution
Accepted Solutions
by
NimeshJarecha
Esri Regular Contributor
08-22-2012
09:42 AM
Mark as New
Bookmark
Subscribe
Mute
Subscribe to RSS Feed
Permalink
Print
Here is how you can get that...
AGSPoint *point = (AGSPoint*)pointGraphic.geometry;
NSLog(x: %.6f,point.x);
NSLog(y: %.6f,point.y);
Hope this helps!
Regards,
Nimesh
View solution in original post
Reply
0
Kudos
2 Replies
by
NimeshJarecha
Esri Regular Contributor
08-22-2012
09:42 AM
Mark as New
Bookmark
Subscribe
Mute
Subscribe to RSS Feed
Permalink
Print
Here is how you can get that...
AGSPoint *point = (AGSPoint*)pointGraphic.geometry;
NSLog(x: %.6f,point.x);
NSLog(y: %.6f,point.y);
Hope this helps!
Regards,
Nimesh
Reply
0
Kudos
by
deleted-user-4b
dbdJY7UQ_i
Deactivated User
08-22-2012
10:27 AM
Mark as New
Bookmark
Subscribe
Mute
Subscribe to RSS Feed
Permalink
Print
Got it, Thanks so much!
Reply
0
Kudos
Post Reply