View pinpoint-information of a Google Map in a UIWebView

Hello,
I'm building an application with a webview of a Google Map with loads of pinpoints. Those pinpoints are already placed on the map, and the map is succesfully embeded in my website.
When I click on a pinpoint in my Safari 'for Mac', I see the information of the pinpoint. When opening my application on my iPhone and start clicking on pinpoints... nothing happens.
Is there a solution for this problem?
(Running firmware 3.1.2)
Gr.
Vincent

I did another test and something seems to have changed since I had trouble with my app. If I place a href for [this URL|http://maps.google.com/maps/ms?ie=UTF8&hl=en&msa=0&msid=1093915278307402071 25.0004463abd2c899f08839&z=14] into a WebView and tap the link to load it the pins work in the WebView!
See if your page works with fewer points.
Message was edited by: xnav

Similar Messages

  • I am trying to print out information on a Google Maps page. I have the print setting on fit to width but the page does not print that way and some of the page that would normally show on page 2 is missing.

    The page prints out fine on Internet Explorer, but not on Firefox. 2 pages are supposed to print out but only 1 prints. Also it does not fit to width even though that's the setting.

    That file could be set as a Launch Agent or Daemon in your ~/Library or /Library, You could try to look for it or Safeboot your computer and then empty the trash. Safebooting disables Launch Agents/Daemon and Third Party Kernal extensions. Here's the article to Safeboot OS X: What is Safe Boot, Safe Mode? - Apple Support

  • Google Map Integration with Map Viewer is not working

    Hi Team,
    My MapViewer Version: Ver11_1_1_7_B130111
    I have created a Google Map (with Type of Map Source as "Google Maps") in Oracle Map Viewer and i could see google map in Oracle Map Viewer(using "show Map").
    I wanted to show a village map theme over the above google map in a web page and i am using Jdeveloper to integrate map viewer with Village data. I could see the google maps inside Jdeveloper however when i run the Jdeveloper code google map is not shown inside the web page.
    I tried with Oracle Maps, Bing Maps as the "map source" in map viewer and tried integrating inside Jdeveloper and got same result (blank screen). However when i tried a different mapviewer ( Base Map ELOCATION.WORLD_MAP from OracleFMW MapViewer Home ) i could see the map in the web page.
    I could get all other base maps (created with "internal" as the map source") in the web page, so there is some thing that i am missing with Google Maps, Bing Maps, Oracle Maps. Could you please help me what is that i am missing or point to a help resource?
    Thanks
    Nag

    Hi Jayanth,
    Issue is solved after creating the web page using latest JDeveloper (11.1.2.4). Thanks a lot for your help
    With Regards
    Nag

  • OBIEE 11g - Maps with Google Map as Source

    Hi Experts,
    Am trying to create some maps using information from Google Maps as source.
    In Map-viewer console, I have added Google Maps as the source in 'Manage Map Tile Layer' and was able to see the base map when I did a 'View Map/Manage Tiles'.
    However when I logged into analytics and tried to import layers, am not able to see anything.
    Is there anything that I am missing out. Thanks for any pointers.
    - Sujana

    Spatial data has to be setup in the database to get layers. I tried using some of the layers from the spatial data I had and then could get a map with google map as the background map.
    But couldn't find any easy alternate to fetch layer information.
    Edited by: user638087 on Apr 19, 2013 1:15 AM
    Edited by: user638087 on Apr 19, 2013 1:17 AM

  • Google Map doesn't appear automatically when a prompt changes value

    Hi everybody,
    I'm using OBIEE 11.1.1.6.0 updated to 11.1.1.6.1 and I'm facing a curious problem.
    I created a dashboard with three sections.
    In the first section there is a prompt which shows the Top number of providers.
    In the second section there is a table on the left side which shows how many members we have for each provider, and a pie chart on the right side.
    In the third section there is a narrative view used to see a google map with ALL the providers' locations. This map have to show ALWAYS ALL the locations (no matter what I selected as Top number of providers, so it will be always the same).
    So, when I change the Top number of providers, the table and the pie chart refresh automatically, but the map doesn't refresh, or better it doesn't appear ! (I don't see the map anymore, I see a white space....). To see it again, I have to refresh the entire page.....
    This functionality worked in the past, but with this version it seems that it doesn't work properly....
    Has anyone faced an issue like this using the narrative views with google maps ??? This is a problem that I need to solve urgently.
    Any help or hint will be appreciated
    Thanks in advance
    Alex

    It looks to me like this has nothing to do with the digital signature prompt and everything to do with a badly formed URL. In a URL the domain name is not case sensitive but all the path information is case sensitive. Whether one should use http://www.mycompany.com/Abc/Xyz/ or http://www.mycompany.com/abc/xyz/ depends only on what the HTTP server expects. So which of these does the HTTP server expect?

  • Google Map markers text not formated properly in FireFox

    I'm using the Blueprints Ajax Map Viewer component to add a Google Map to one of my pages. This is too cool! It really makes using Google Maps easy.
    However I have a display problem in FireFox. The map has MapMarkers with markup. When you click on a marker the Info Window "balloon" is displayed with the markup text. In IE, the Info Window is nicely wrapped. However, in FireFox, the text is displayed one word per line. So in IE it looks like:
        My Marker
        Description of my marker.But, in FireFox
        My
        Marker
        Description
        of
        my
        marker.Here's an actual example of the "markup."
    <b>Downtown Danville</b><p>Parking. Water. Restroom (in Caboose!). Museum.</p>I suspect it is a style problem, but don't know where to start to troubleshoot. Do I have to dig into the Themes? Any Ideas?
    Cheers
    Dan

    Thank you for bringing this to the forum. One of our developers suggests replacing all spaces with non-breaking spaces ( ) and provides the following code associated with the component catalog found at http://developers.sun.com/ajax/componentscatalog.jsp:
    public String button1_action() {
    String userLocation = (String)this.selectValue1.getValue();
    if (userLocation != null) {
    GeoPoint userPoint = (GeoPoint)getSessionBean1().getGeoPoints().get(userLocation);
    if (userPoint != null) {
    double latitude = userPoint.getLatitude();
    double longitude = userPoint.getLongitude();
    this.mapViewer1_center.setLatitude(latitude);
    this.mapViewer1_center.setLongitude(longitude);
    renderMapViewer = true;
    String m = formatMarker(userPoint.toString());
    MapMarker marker = new MapMarker(latitude, longitude, m);
    this.mapViewer1.setMarkers( new MapMarker[] {marker} );
    //this.mapViewer1.setInfo(marker);
    } return null;
    private String formatMarker(String text) {
    text = "<b>" + text + "</b>";
    text = "Location shown: <br/>" + text;
    text = text.replaceAll(" ", " ");
    return text;
    Our tutorial will also be updated shortly. I hope this helps.
    ~Joe Silber
    Java Studio Creator Documentation

  • Why cant i get street view on google maps since installing mountain lion everytime i try i get a message saying i need to download latest flash player i do this but still doesnt work

    since installing mountain lion i am unable to get street view on google maps
    it asks me to download latest flash player to view street view which i do but still no joy

    Hi, see if it's related to this...
    About Safari 5.1.7 and Leopard Security Update 2012-003
    Summary
    Learn about Safari 5.1.7 and Leopard Security Update 2012-003.
    Products Affected
    Mac OS X 10.5, Product Security, Safari 5.1 (Mac OS X 10.6), Safari 5.1 (OS X Lion)
    Safari 5.1.7 for OS X Lion, Safari 5.1.7 for OS X Snow Leopard, and Leopard Security Update 2012-003 disable out-of-date versions of Adobe Flash Player.
    Out-of-date versions of Adobe Flash Player do not include the latest security updates and will be disabled to help keep your Mac secure. If Safari 5.1.7 or Leopard Security Update 2012-003 detects an out-of-date version of Flash Player on your system, you will see a dialog informing you that Flash Player has been disabled. The dialog provides the option to go directly to Adobe's website, where you can download and install an updated version of Flash Player.
    Additional Information
    If you need to re-enable an out-of-date version of Flash Player, you can do the following:
    1. Navigate to the /Library/Internet Plug-Ins (Disabled) folder.
    2. Drag "Flash Player.plugin" into /Library/Internet Plug-Ins.
    3. If the browser is running, quit and restart it.
    http://support.apple.com/kb/HT5271

  • Flash 11.1.102.55 crashes IE8 on Google Maps / street view

    Since the Flash update to 11.1.102.55 I have had repeated crashes of my 32 bit Windows XP SP3 system.  They typically have happened in Internet Explorer 8, 32 bit version (updated with latest MS patches).
    Sometimes the IE8 lock ups can be cleared by using task manager.  About 30% of the time, a machine power down/ reset is the only solution -- the screen freezes (mouse won't move, clock stops, Ctrl-Alt-Del won't work).
    The machine is a Lenovo Z61p with 3Gb available memory.
    I have been able to repeat the crashes by going to Google maps.
    Example:
    1. Go to Google Maps
    2. Look at Arlington National Cemetery in regular view
    3. Move the "Street View" stick figure to one of the Panarama photo points.  Screen with show photo view
    4. In the shrunken lower right corner map view, expand the map view to cover half the screen.
    Things may get dicy about now.
    5. Try moving the stick figure on the map.  OR try expanding the photo to full screen.
    I get repeated lockup at this point.

    Try using a different browser. I use Firefox which you can download from here: http://www.mozilla.org/en-US/firefox/fx/
    If you don't like the "Tabs On Top" layout, you can move them to below the location bar by simply right clicking a blank part of it and then click the menu items called "Tabs on top" to remove the checkmark. Tabs will subsequently appear below. Other tab layout options can be found in this support article: http://support.mozilla.com/en-US/kb/how-do-i-customize-toolbars
    There are no issues with Google Maps as far as I'm aware.

  • Using Google Maps Street View on My MacBook Pro

    Recently, I have been getting "Plug-In Missing" in the place of a video in a blog post. Also, when I try to use Street View in Google Maps I get a box that tells me I need to install Adobe Flash Player 10 or later to be able to use Street View. Should I try to download and install Adobe Flash Player? What could I use to be able to use Google Maps Street View and/or to play videos?

    I found my reply elsewhere - you have to uncheck "contacts" and then recheck it. Kinda idiotic, but there you have it!

  • Street View (google maps) not working on Firefox with SNA

    I have a problem with Firefox when trying to use Street View in Google Maps. It basically kills the browser by being extremely slow. Now, this happens only when using SNA acceleration (default), but not with UXA or GLAMOR (just removed on latest update or xf86-video-intel). Everything else works fast and good with SNA, including WebGL in Firefox. Moreover, with Chromium I don't have this issue: Street View works fine with SNA.
    This is an Intel based laptop with Gen5 Intel graphics (and in case it matters, I use KDE desktop):
    # cat /var/log/Xorg.0.log | grep SNA
    [455944.801] (II) intel(0): SNA initialized with Ironlake (gen5) backend
    Anyone else noticed this? Any idea of what can be the problem?

    I have a problem with Firefox when trying to use Street View in Google Maps. It basically kills the browser by being extremely slow. Now, this happens only when using SNA acceleration (default), but not with UXA or GLAMOR (just removed on latest update or xf86-video-intel). Everything else works fast and good with SNA, including WebGL in Firefox. Moreover, with Chromium I don't have this issue: Street View works fine with SNA.
    This is an Intel based laptop with Gen5 Intel graphics (and in case it matters, I use KDE desktop):
    # cat /var/log/Xorg.0.log | grep SNA
    [455944.801] (II) intel(0): SNA initialized with Ironlake (gen5) backend
    Anyone else noticed this? Any idea of what can be the problem?

  • New Google maps street view is very slow in FF 31.2.0 on Linux (RHEL 6.3)

    The new google streetview (which does not use Flash) is unusable and renders very slow starting with pixelated images that progressively build. The slowness is not present in FF30.0 on Windows.
    It seems to be an issue in Linux Mint as well: http://forums.linuxmint.com/viewtopic.php?f=47&t=180542
    It seems to be quite common on the google map forums: https://productforums.google.com/forum/#!topic/maps/rWUCllpDDSE
    There seems to be bug open already: https://bugzilla.mozilla.org/show_bug.cgi?id=697443
    But why does FF30.0 on windows work O.K but not FF31.2.0 on Linux?
    * ICA Plugin (Linux) Version 12.1.8.250715 (/opt/Citrix/ICAClient/wfica)
    * Shockwave Flash 11.2 r202
    * The IcedTea-Web Plugin executes Java applets.
    * The Totem 2.28.6 plugin handles video and audio streams.
    * DivX Web Player version 1.4.0.233
    * nspluginwrapper is a cross-platform NPAPI plugin viewer, in particular for linux/i386 plugins.This beta software is available under the terms of the GNU General Public License.
    * This plug-in detects the presence of iTunes when opening iTunes Store URLs in a web page with Firefox.
    * Add Block Plus
    * Firebug

    fixed with this method:
    http://bbs.archlinux.org/viewtopic.php?pid=319710

  • Google maps street-level view works in Safari but not Firefox 3.6.8

    I've lost the ability to see street-level views in Google Maps, probably in the last couple of months, and suspect Firefox.

    Perfect! Thanks cor-el: Good instructions. It was the add-on extension FlashBlock, which makes some sense, in that what wasn't happening with the street-level feature was that I wasn't getting the image of the street. Cannot now reconstruct what led me to <https://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes>, but your instructions got me there, and following the trouble-shooting steps narrowed down the problem, the way one used to have to do with Mac extension, identify the culprit by process of elimination and going first for those that might make sense, as FlashBlock did to me, whether for the right or wrong reason.

  • In google maps I cannot go to street view as I can in my other browsers. It tries to but quits and then says "done"

    Google maps has street view where you can virtually put yourself on the street and move in 360 degrees of rotation and move in any direction to see the address you just looked up as it appears if you were standing in front of it. It used to work in earlier Firefox but in 3.6.9 it tries to but quits before it accomplishes the task stating "done" in the bottom lower left on the taskbar(?) then leaves a blank white screen. All necessary plug ins have been installed; Adobe Flash Player, Java, Shockwave. It works fine in Google Chrome and explorer but Firefox is my browser the browser I use over all others.

    If you use extensions like <i>Adblock Plus</i> or <i>NoScript</i> or <i>Flashblock</i> that can block content then make sure that such extensions aren't blocking content.
    See [[Troubleshooting extensions and themes]]

  • Google Maps does not show street view or choice of map or satellite on 4.01. IE does.

    I installed 4.01 on XP. Google Maps opens with satellite view. I cannot find toggle for maps. Street View is not available.
    These still show up on IE8. VPike.com which is powered by Google Maps works fine.

    Are you using Adblock Plus?
    See:
    * http://kb.mozillazine.org/Images_or_animations_do_not_load
    * Check the permissions for the domain in the current tab in Tools > Page Info > Permissions
    * Check that images are enabled: Tools > Options > Content: [X] Load images automatically
    * Check the exceptions in Tools > Options > Content: Load Images > Exceptions
    * Check the "Tools > Page Info > Media" tab for blocked images (scroll through all the images)
    There are also extensions (Tools > Add-ons > Extensions) that can block images.
    * [[Troubleshooting extensions and themes]]

  • Why does Google maps not render "Earth view" properly in Firefox, but works fine in other browsers?

    I've been using firefox forever, use it with google maps, mostly with earth view and suddenly, it shows a diagonal mirror image of the map from the bottom right corner to the top left. Google maps in Chrome works fine and maps in Google Earth also work fine.

    We are aware of this issue and will be releasing a Firefox 37.0.2 to correct this within a day or so :)

Maybe you are looking for

  • Facing issue while deployment on 11.1.1.6 soa server

    Problem Summary Facing issue while deployment on 11.1.1.6 soa server Problem Description We are facing issue while deploying a bpm project over a newly built bps-soa server 11.1.1.6. While we are deploying a bpm project, first it is taking around 40m

  • Album Track Order Problem

    I have recently noticed that the track order in some of my albums has gone all screwy. Even though when I go to >Get Info, and verify that the track order and disk number is correct, they don't appear in the order listed. For Example, when I sort by

  • Why 11gR2 scan have limited maximum to 3 ips

    Hi, I am not able to get the answer that why 11gR2 SCAN has limitation to have min 1 and max 3 virtual IPs. As it's not dependent on number of nodes in ths cluster, any idea what's the logic behind it . Regards, Dheeraj Vaish

  • Confuse on word Integrate

    Hello, I am learning Role of XML in Java Platform.I confuse on word integrate.Consider a scenario where a healthcare agency needs a Web application to Integrate the data stored in heterogeneous databases at different locations.Is this mean of using d

  • Anyone played w/ flash in pdf's ?

    Trying to creat an interactive document .. click .. popup Used the pdf link to to launch a flash movie in a floating pop up.. Now I I want the popup to close automatically .. Unloading the MC doesn't do it .. Thoughts ? THANKS !!