Community
All Communities
Products
ArcGIS Pro
ArcGIS Survey123
ArcGIS Online
ArcGIS Enterprise
Data Management
Geoprocessing
ArcGIS Experience Builder
ArcGIS Web AppBuilder
ArcGIS Dashboards
ArcGIS Field Maps
ArcGIS Spatial Analyst
All Products Communities
Industries
Education
Water Resources
State & Local Government
Transportation
Gas and Pipeline
Water Utilities
Roads and Highways
Telecommunications
Natural Resources
Electric
Public Safety
All Industries Communities
Developers
Python
JavaScript Maps SDK
Native Maps SDKs
ArcGIS API for Python
ArcObjects SDK
ArcGIS Pro 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
Esri India
GeoDev Germany
ArcGIS Content - Esri Nederland
Esri Italia Community
Comunidad GEOTEC
Europe
Asia Pacific
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
Community Ideas
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
:
ArcGIS API for Flex (Retired)
:
ArcGIS API for Flex Questions
:
Re: Mobile Flex: Fast Zoom Crash
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
Mobile Flex: Fast Zoom Crash
Subscribe
658
3
08-19-2013 07:23 AM
by
MattSheehan
Deactivated User
08-19-2013
07:23 AM
Mark as New
Bookmark
Subscribe
Mute
Subscribe to RSS Feed
Permalink
Print
Report Inappropriate Content
We are seeing an issue on mobiles with fast zooms crashing the app. See the following example:
http://webmapsolutions.com/demos/iPadMobileCrash/iPadMobileCrash.html
We thought it might have something to do with dropshadows so we put in place:
(layer as FeatureLayer).filters = [new spark.filters.DropShadowFilter(1,90,0xffffff)];
(layer as FeatureLayer).filters = [new flash.filters.DropShadowFilter(1,90,0xffffff)];
But no joy. This may have something to do with the underlying technology, but we wondered if there might be any work arounds to get past this problem?
Thanks
--Matt
Tags
(2)
Tags:
flex
web_developers
Reply
0
Kudos
All Posts
Previous Topic
Next Topic
3 Replies
by
YannCabon
Esri Contributor
08-20-2013
12:32 PM
Mark as New
Bookmark
Subscribe
Mute
Subscribe to RSS Feed
Permalink
Print
Report Inappropriate Content
Hi Matt,
Yes the Flash Player is dealing really badly with filters and scaling display objects at the same time.
There is nothing we can do about it.
Yann
Reply
0
Kudos
by
JoachimPetersen
Emerging Contributor
08-20-2013
02:47 PM
Mark as New
Bookmark
Subscribe
Mute
Subscribe to RSS Feed
Permalink
Print
Report Inappropriate Content
attach a timer(delay) on it, that might prevent it from crashing?
http://resources.esri.com/help/9.3/arcgisserver/apis/flex/apiref/com/esri/ags/events/ZoomEvent.html
public function init():void {
map.addEventListener(ZoomEvent.ZOOM_END, logZoomEvent);
}
public function logZoomEvent(event:ZoomEvent):void {
//some delay here, like disable zoom function until a timer has finished?
}
Reply
0
Kudos
by
MattSheehan
Deactivated User
08-22-2013
05:03 AM
Mark as New
Bookmark
Subscribe
Mute
Subscribe to RSS Feed
Permalink
Print
Report Inappropriate Content
Thanks Yann. Hope Adobe update the player in the near future to fix this issue. Avoiding finger pinches is a way around the problem. The crash is more rare with a single finger double tap (zoom in) and simultaneous double finger tap (zoom out).
--Matt
Reply
0
Kudos
Post Reply