Javascript :: Integrate Google Earth Feature Into Flex?
Dec 18, 2010
i have successfully integrated Google earth with Flex using ExternalInterface.call("javascriptMethodName") method and writing the javascript stuff in the html file which embeds the swf file. it ran and loaded Google earth successfully.
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script src="http://earth-api-samples.googlecode.com/svn/trunk/lib/kmldomwalk.js" type="text/javascript"> </script>
[Code].....
this is a snippet of that html file but when i add something like to the html file:
var directionsService = new google.maps.DirectionsService();
View 1 Replies
Similar Posts:
May 20, 2011
I'm trying to extend KmlPlacemark in the Google Earth API. Google uses factory methods to create the objects so I can't do something like this:
KmlPlacemark.prototype.foo = fuction(){...}
I tried to simply add methods to each of the objects after they were created
function foo(){...}
placemarkObj.foo = foo;
but it throws
Error: Trying to add unsupported property on NPObject!
View 2 Replies
Nov 15, 2010
are there any Flash/Flex API for Google Earth like the Map API? i haven't seen an API in Google earth API official page. or is there any way to use all the features of its javascript API with actionscript/flex.
View 1 Replies
Aug 19, 2011
I have developed an application using adobe Flex 3 as frontend and Java as backend. The application is related to CRM. So i need to integrate Google Calender into my application using flex 3.
View 2 Replies
Nov 14, 2011
I have developed one Mondrian schema and cube. I have deployed schema file in Pentaho BI server. I would like to know is it possible to connect these Pentaho schemas and UI technologies like Google Visualization API or Adobe Flex?
While searching for solution I came to know about OLAP4J and icCube, out of which I think OLAP4J is very old project and its not really active project. icCube looks good but it works with its own server, it cannot be integrated with Pentaho BI server.
Right now I am thinking about Google Visualization API and Adobe Flex. Or, is there any other option?Where can I get more information about it?
View 1 Replies
Mar 7, 2012
I am studying land surveying and cartography and I am doing my final project. I am trying to make a google earth like map in Flash.I already have the map , in the form of swf files.
View 1 Replies
Jan 27, 2010
Is there any way to create a zoom in to a location like Google Earth for a site?
I think, I can do this with a slide show in Flash or jQuery, but I would like to know if there is a better alternative way!
View 2 Replies
Nov 18, 2010
I have a XML file which I am trying to integrate a search feature. I have attached a zipped folder of my working example.In this XML file is a collection of modules: 1.1, 1.2, 1.3 etc...
Each module is broken down further:
1.1has: 1.1.1, 1.1.2, 1.1.3
1.2has: 1.2.1, 1.2.2, 1.2.3, 1.2.4 etc...
I have a search feature that is searching the XML, then outputting the content if found.Now this is working OK for a specific module listed above, for example, in my zipped example, I can get it to search 1.1.1, 1.1.2, 1.1.3 etc...
What I can�t seem to get working is how to search all of the modules sections: eg: 1.1: 1.1.1-1.1.x, 1.2: 1.2.1 � 1.2.x and so on depending on how much content is sorted in my XML.
View 14 Replies
Sep 12, 2010
Now it can only be done with the FMLE. Is there somewhere I can check the development plan for FMS besides here?
View 4 Replies
Jul 28, 2010
I'm trying to integrate the Google Map Api into my flash site. Ive managed to display the map, but there is no marker, also, my map flashes frantically and wont stay stable. This is the AS im using.
Code: Select allimport com.google.maps.*;
import com.google.maps.overlays.*;
import com.google.maps.controls.*;
var map:Map = new Map();
map.key = "ABQIAAAAVa81BaFuAYp7h1sySsII5xSoR_2O1uVIgKyXCqNwBvI_ph4EiRStHK79ILIE2AoBfDjHAk1cTe5htg";
map.setSize(new Point(550,450));
[Code]...
View 2 Replies
Aug 27, 2009
I have an as2 site that calls different swfs to the stage from movieclips.The buttons are movieclips and the content that is pulled in is a different swf for each button.How would I go about integrating SWFaddress in here and being able to get analytics functionality out of it?
View 1 Replies
Apr 15, 2010
I'm trying to find a way to integrate google map in my flash project. I've tried several components that i found on the web, but non of them works properly. The only one that did some kind of work was this:[url]...The problem with it is that when i test the flash on my pc it works fine, but when i upload the flash on the net the map doesn't show. There is instead a sign "We are sorry, but we don't have imagery for this zoom" or something like that.
View 3 Replies
Oct 6, 2010
I have google flex application for postcode search, How do I import the Swf file from flex into flash so I could add more movie clips like zooming effects and 3d rotation
View 3 Replies
Apr 11, 2012
How could I embed a Google Maps API Javascrip on my Flex Application?I found some examples, but none of them worked for me.
http://javey.net/bike/map/player5/map.html?gpx=http://javey.net/bike/gpx/24-nov-2007.gpx&title=Sheldon.Road.Trail http://note19.com/2007/11/22/how-to-embed-google-map-in-flex/
View 3 Replies
Jun 21, 2010
I wanted to put a search box in my flex app that would act just like google or google finance: you start typing and a drop down list just below starts filtering the results dynamically. Does anyone know how to do this in flex? I am using flex and php so as the user types it will pull results off the server dynamically.
View 1 Replies
Feb 18, 2010
I've been using this method of file uploading for a bit, but it seems that Google Gears has poor support for the newer browsers that implement the HTML5 specs. I've heard the word deprecated floating around a few channels, so I'm looking for a replacement that can accomplish the following tasks, and support the new browsers. I can always fall back to gears / standard file POST's but these following items make my process much simpler:
Users MUST to be able to select multiple files for uploading in the dialog.I MUST be able to receive status updates on the transmission of a file. (progress bars)I would like to be able to use PUT requests instead of POST I would like to be able to easily attach these events to existing HTML elements using JavaScript. I.E. the File Selection should be triggered on a <button> click. I would like to be able to control response/request parameters easily using JavaScript.
An example of uploading code using gears:
// select some files:
var desktop = google.gears.factory.create('beta.desktop');
desktop.openFiles(selectFilesCallback);
[code]....
Edit: apparently flash isn't capable of using PUT requests, so I have changed it to a "like" instead of a "must".
View 2 Replies
Feb 23, 2012
I know there´s an api for flash but it has been deprecated, how can i display google maps inside flash using javascript api v3
View 1 Replies
May 9, 2010
I am planning to build a web application highly based on Google Maps API. I am considering either using the Javascript version, or the Flash version. I would like to create an interface which will be quite rich. Should I go for JS version of the API or Flash one? Also I do not plan to purchase Flex Builder, so ideally I would like to use some free Flex SDK that supports ActionScript. What would you recommend? Is it more reasonable to use JS or maybe better use the Flash Version. What are the limitations, pros and cons?
View 3 Replies
Mar 8, 2011
In my Google Chrome extension content script I have the following:
[Code]...
I'm using Chrome version 10.0.648.127 on a Mac, but I also tried it on a PC with the same results
View 2 Replies
Apr 18, 2011
I've been playing with the visualization API aka dynamic charts and I've found that the example at [URL] does not really work on localhost. That is, Error calling method on NPObject is thrown when a event is clicked (points A and B in the example aforementioned). I suppose that is a security issue on the server end (Google's flash base).Since that jsFiddle code is hosted on a domain, the note at the very bottom of the documentation should not apply:Because of Flash security settings, this (and all Flash-based visualizations) might not work correctly when accessed from a file location in the browser [URL] rather than from a web server URL [URL] .
View 2 Replies
Nov 28, 2010
I'm trying to track a #anchor for example [URL] the anchor is being called by Flash AS2. how can i tell GA to track hits on this page? I tried the GETURL method in flash:
[Code]....
which apprently used to work, but since they've made changes this doesn't... during tests firefox navigated to a page with the url javascript:_gaq.push [URL] was strange. Do I need to even use flash to ask GA to track the anchor? Is there a way i can point GA to track all anchors that are part of my page?
View 2 Replies
Feb 24, 2012
I have a flash file and am using google's suggested method for as2 event tracking like so:
getURL("javascript:pageTracker._trackEvent('Refferal', 'Join', 'Benefits for HCAs/APs');");
The problem is that instead of silently communicating, pageTracker._trackEvent() appears to return a boolean value. Every time I click the button which this is located on I leave the page I was on and end up on a page that just contains the word "true".how to get around this? It makes the flash unusable.
View 1 Replies
Mar 1, 2012
I want in my application show multiple markers on google map .only address of the city or country is provided but without latitude and longitude of the city
View 2 Replies
Jun 25, 2011
I was having an issue with a Flash AS3 SWF Preloader stalling in Google Chrome only, Mac or PC, when JavaScript is disabled. It's fine with JavaScript. I diagnosed that the contentLoaderInfo Event.COMPLETE was not being fired. The successful workaround was to use the ProgressEvent.PROGRESS to check when the bytesLoaded >= bytesTotal. This worked OK in a relatively simple Flash application, however I also have an MP3 player, using a loaded XML file, MP3s, a thumbnail and other images. I am reluctant to plunge into the same workaround without first asking the question - when the bytesLoaded >= bytesTotal IS THIS THE SAME AS Event.COMPLETE? Or could I be faced with an error when trying to access either the event.target.data or event.target.content (depending on using loader or URLLoader class as required) to get the object in question?
View 1 Replies
Feb 20, 2012
how to best handle the issue of not having enough permission inside of a Google Chrome Extension. I am interacting with the YouTube API, but I am not using swfobject.js, just using am embdeeded div. I do not believe this is introducing my security issue, but perhaps it is. In development, I had to navigate to Adobe's flash player security page and designate my development folder as a 'safe' location. In deployment, I do not have the ability to do this. I do not want my users to have to click 'Allow All' on flash player security, but I do not see another way to achieve my results.Seems to be a duplicate of SWFobject in a Chrome Extension - API Unavaiable but remains unanswered.Source: https:[url].....
To run: Pull from the repo, load up Chrome, click the wrench, go to extension, check 'Developer Tools' -> Load Unpacked Extension and browse to the folder.
View 1 Replies
Sep 21, 2009
I want to make a Flash or Flex front end for my R code, I want to call an R function from a website (using Flash) what is the best way to go about connecting Flash and R?
View 2 Replies
Sep 2, 2010
I'm having trouble conceptually understanding how to integrate flex components -- forms, charts, data grids, etc. -- with an existing web app. There are certain aspects of the web application where I believe it makes more sense to use flex -- however, I DO NOT want to replace the (html/js/java) web-app with a pure flex based app.For example, currently the web app displays user data using html tables and java based charts, I'd like to re-implement this "data display" using flex. Would I have to create a flex "application" for the "data display"?
View 1 Replies
Sep 3, 2010
How can you integrate R and Flex (e.g. web server using rapache)?
View 1 Replies
Dec 29, 2010
Im xHTML/CSS/PHP coder - not flex and AS3.Components that im saing on:URL...sebastiaanholtrop (spam restrictions)
View 1 Replies
Feb 15, 2011
I'm just looking for some direction to integrate my Flex app with SiteMinder. I can't find any working examples online to get me started.
View 1 Replies