Over query limit while integrating google maps

Hi
I am getting over query limit error when i want to display more than 11 records while integrating google maps in obiee. I can display upto 11 records in the map.If i increase the row limit its throwing the error.
Error: Geocode was not succesfull for the following reason: Over_query_limit
How to overcome this error,in order to fetch more than 11 records in the map?
I have only two columns in the report
state code || No.Of Customers
In narrative view i have the following code
Replace ?!? with <
Prefix part
?!?script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false">
?!?/script>
?!?script type="text/javascript">
var geocoder;
var map;
function initialize() {
geocoder = new google.maps.Geocoder();
var latlng = new google.maps.LatLng(37.4219720, -122.0841430);
var myOptions = {
zoom: 8,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
GetMapAdress ();
function showAddress(address,comment) {
if (geocoder) {
geocoder.geocode( { 'address': address}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
var marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location
var infowindow = new google.maps.InfoWindow({
content:comment
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map,marker);
} else {
alert("Geocode was not successful for the following reason: " + status);
function GetMapAdress (){
Narrative:
showAddress('@1', ' No Of customers are @2');
Postfix part:
?!?/script>
?!?script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js" type="text/javascript">?!?/script>
?!?script type="text/javascript">
$(document).ready( function(){initialize();return false;});
?!?/script>
?!?body onunload="GUnload()">
?!?div id="map_canvas" style="width: 800px; height: 700px" > ?!?/div>
?!?/body>
This gives the count as per the state in the google map, if we click a state it will show us the count, but its holding good only for 11 records in the map
Appreciate your response

I haven't yet used the tag. It looks quite interesting.
I had a look at the
cf_googleMap
Documentation out of curiosity. Apparently, putting
<cf_googlemapshow/> at the end, just before the closing body
tag, solves a number of Javascript issues.

Similar Messages

  • Integrating Google Maps in Oracle Apex and 404 Not found error page

    Currently using APEX version 3.2.0.00.27 installed in OracleXE version 10.2.0.1.0. Have been attempting to recreate some examples of Google Maps within APEX. Found a nice set of examples here that build up to what I'm looking to ultimately do by incorporating google maps into APEX:
    http://blog.whitehorses.nl/2009/10/04/integrating-google-maps-in-oracle-apex/
    Unfortunatly, I'm getting the "404 Not Found, Not found, The requested URL /apex/wwv_flow.accept was not found on this server" page when I try to recreate the "Map with Search" example. I'd like to see if this really works using the html input and button tags in the body/region source versus creating APEX items to pass the address values to the javascript in the html header of the apex page. I'm thinking it's just an html thing within APEX that you have to do it a certain way, but I haven't managed to hit that magic combination. have gone to the google maps api v2 and looked at the html they use (it's what these examples with apex are based on) and tried that just to see. Same 404 result.
    I've seen suggestions at this forum and elsewhere that the 404 error is due to a bug. have been to metalink, and really haven't seen anything that spells out what the bug is and how to patch it or work around it. May be I just haven't found the right note/doc yet. have seen suggestions to change something associated with the Anonymous account that APEX uses. Have turned on authentication in the application to use an APEX user account with a logon page to the application. Still get the 404. Although, I have not adjusted anything elsewhere, like a DADS config file, because the apex/xe configuration is using the plsql gateway. Not sure of any procedure for changing settings on anonymous account when using plsql gateway.
    Open to suggestions. APEX 3.2 is customer version, so going to 4 may not be an option yet. XE, on the other hand, can certainly be swapped for an 11g version standard or enterprise edition if need be. I don't think this is a db version problem though. I think it's more on the APEX side of things.
    Anyway, any help or suggestions are appreciated.
    thanks
    rtp
    Edited by: RTP on Jun 24, 2011 10:30 AM

    Hi I have the same problem.... if you found the solution, please put it here to see it... I need a solution to this its urgent!!
    Thanks!!

  • While printing google map from FF4 its not displaying the map in the print out paper?

    FF4 displaying the google map in my website. But while printing google map from FF4 its not displaying the map in the print out paper.
    I chekced this FF 3.6 and there is no problem with this and other versions. FF4 having this problem.
    What should I do for this? Please let me know.

    What printer models is this intended for?  I assume it is aimed at the lower end inkjets, with the suggestion of loading 10-25 sheets of paper.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • Integrating Google Maps in a CFDIV?

    Hi,
    I played around with the Google Maps API and I like it a lot.
    I found the excellent cf_googlemaps custom tag at riaforge.com and
    that worked like a charm. I was (and still am) ready to get some
    mapping done.
    Unfortunately, integrating a Google map in a CFDIV (or a
    CFLAYOUT, CFPOD, etc. for that matter) results in an error. An
    otherwise perfectly good call to a Google Map just keps throwing
    the JS error and I can't seem to fix it. In fact, I am not even
    getting closer... :-( This is the error:
    "Error processing JavaScript in markup for element
    centerpanel: [Enable debugging by adding 'cfdebug' to your URL
    parameters to see more information]"
    I tried stripping the code down to the bare minimum that will
    render a map (straight from the Google Map API pages examples), but
    the result was the same... zip...
    I expect somebody else must have run into this at one point,
    as this API has been around for a while and so had CF8. Any of you
    people heard what might solve this? I am not copying any code into
    this post just yet, as I do not think it is in my code, but if that
    will help, I will do so.
    Thnx for your time and efforts :-)
    Jasper Grannetia
    The Hague
    The Netherlands

    I haven't yet used the tag. It looks quite interesting.
    I had a look at the
    cf_googleMap
    Documentation out of curiosity. Apparently, putting
    <cf_googlemapshow/> at the end, just before the closing body
    tag, solves a number of Javascript issues.

  • Integrated google Map on SAP Work Manager 6.0

    Hi
    I am new in agentry and worked on SAP Work Manager App. I want to put customized map in Agentry and show some workorder on that map.
    Can anyone give me any suggestion regarding it.
    Thanks
    Mohit Tyagi

    Hi
    Can any one help me for putting map on SAPWM 6.0 . and i am working on SMP 2.3.So please give me suggestion how can i achieve this problem. and is it possible to put map on SAPWM 6.0 without integration any API?
    Thanks
    Mohit Tyagi

  • Integrating google maps in obiee 10g

    i am using IE and after filling the boxes in narrative view in preview it is showing "retrieving view"...
    but even after long time it displays nothing...
    do help me.
    any help is appreciated.

    HI,
    Refer the below links.
    http://wentari.blogspot.in/2011/03/obiee-10g-and-google-chart-api-maps.html#!/2011/03/obiee-10g-and-google-chart-api-maps.html
    http://www.peakindicators.com/index.php/knowledge-base/68-mapping-capabliity-with-oracle-bi-ee-faqs
    Hope this help's
    Thanks,
    Satya

  • Remove Zoom scale of Google maps in OBIEE 11g Mapviewer

    Hi,
    While integrating Google maps with OBIEE 11.1.1.6.0 , we are able to see two Zoom scales one for BI layer and another for Base map layer (Google Map).
    When we select the former Zoom scale (BI Layer) , our views have been placed in exact countries. But when we select latter one, only base map i.e., Google map is zooming without upholding the views(Color fill,Image,Bar Graph,etc.,).
    So is there any way to bring synchronization between two layers with one zoom scale.
    Kindly help me to sort out this issue.
    Thanks in advance!

    Will require backport of a fix for mapviewer (oraclemaps.js) that has to be part of the OBIEE patchset.
    Filing a bug would help the process.

  • Google Map integration in SAP BO Explorer

    Hi All.
    I would want to integrate Google Maps with SAP BO Explorer. Is there any standard functionality (Out of box solution) available for this in SAP BO Explorer?
    Please let me know the step by step procedure for this? If there is no standard functionality available in SAP BO explorer for integrating google maps please let me know the plugins required please. Thank  You in advance
    Regards
    Sami

    Hi Atul.
    Thank you for the link.
    It says " SAP Business Objects Explorer mobile app for the iPad,  can  be integrated with Google Maps. "
    I would want to know the following.
    Does integrating Google Maps with SAP BO Explorer for IPAD/Mobile based version is a standard functionality in SAP BO explorer? Or we need to go for additional plug in?
       2.Same question for web based version of SAP BO explorer as well
       3.If it is not a standard (Out of box functionality) of SAP BO explorer please let me know the plugins /      third party add ins required  for integrating Google Maps with SAP BO Explorer (Both web based            and IPAD/Mobile version).
    Regards
    Sami

  • Google maps or Virtual Earth

    Centigon has a nice new tool for integrating Google maps into Xcelsius - however it costs about $1K and it requires the expensive Google maps premier license.   Anyone have ideas on other ways to use Google maps or Virtual Earth for showing data within Xcelsius?   Thanks very much.   User reaction is poor to my built in continent map with little hand placed icons over the countries in which we do business - can't blame them after using Google or Microsoft mapping products.

    Are they looking for interactivity, or simply a better looking picture?
    One suggestion I could offer is to use is XComponents. They are really a great free alternative:
    http://xcomponents.blogspot.com/2008/07/xcelsius-www.html
    I hope that helps!
    Thanks,
    Brian

  • Storing google maps direction in database

    Hello,
          I have integrated google maps in flex application. When I give source and destination the map will give the route path.
          and it will display the route path also like turn right and left like that. I want to store the entire route path information as it is in the database. Will it      be possible?
    Can any one please help me?
    Thanks in advance

    Hi,
    You can send result of GMap result to the server-side(JAVA/ anything ) as plain object. While saving to database you have to take care of dataType should be BLOB(binary large object)
    please refer following links for more detail:
    http://codeofdoom.com/wordpress/2009/02/18/intro-to-google-maps-api-for-flex/
    http://flex.sys-con.com/node/361222?page=1
    Thanks

  • Can i use WebApps to build a Google map with polygon territories instead of points (pins)?

    I built a map with Google Maps Engine Pro - http://www.jmbcompanies.com/Services/Mitigation/map.
    It showcases territories using a Google map polygon shape.  I wrote custom KML to create it.  However, with Google Maps Engine pro you cannot create custom hyperlinks.  It will link a URL that you put in the data, but you cannot name it or target the parent window, so therefore it opens a new tab for each click to more details.  I really want it to open the WebApp detail page for that item within the same window.
    So, is there a way to use the BC integrated Google maps technology and show polygons instead of points on the map? I've used {module_webappsmap,20754,a} to place individual locations on a map, but what about territories or polygon areas?
    I'm sure that I can create a WebApp to generate the KML for each placeholder.  But how do I turn that into a map?
    THANKS!!

    You can not create a kml file in BC through webapps. Modules do not work in other file types and you do not have server code access to generate a file type of results.
    You need to use the google API and do this yourself or you can just use this:
    And embed it into a custom field. My Maps

  • Stop phone from dimming when using Google Maps

    I'm not sure if this is the right place, but I was wondering if there was a way to stop my iPhone from dimmer while using Google Maps?

    Turn tracking mode on by tapping the blue button at the lower left. That will center your map on your current location. As you move around, iPhone updates your location, adjusting the map so that the location indicator remains in the center of the screen. The screen will remain on so long as you remain in tracking mode.
    See pages 115-116, http://manuals.info.apple.com/enUS/iPhone_UserGuide.pdf

  • 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

  • Charge overheats if Google Map is used while the phone is being charged.

    I've encountered a strange problem:
    The Charge does NOT overheat when using Google Maps on battery power.
    The Charge does NOT overheat when being charged(either via AC adapter at home or DC adapter in car),
    if Google Maps isn't open.
    When Google Maps is open(GPS on)  and the Charge is being charged, then the phone overheats and
    shuts itself off after a warning message appears.
    Verizon replaced the battery 3 times with brand new Samsung batteries.  The phone was hard reset each time.
    I ended up trying it on the Verizon corporate store's Charge on display. Turns out that the problem can be
    reproduced in store....   Does anyone else have this problem?

    I don't know why this problem has been marked "Solved".  It is not solved.
    I have the same problem when using Google Navigation in the Samsung car dock and the car charger.  I started off with a fully charged battery because posts on other sites have complained that the Charge cannot keep up with the power draw of the Google nav app while using the car charger.  About an hour into my trip, I got a message that the battery was overheating and to unplug the charger which I did.  I then had to contend with the screen going out because it was running on the battery.
    I let the phone discharge to about 70% then tried the car charger again.  Within a few minutes, I got the same overheating message.  It was not an overly hot day and the car A/C was set at 68 degrees.  THIS IS NOT ACCEPTABLE.  I love this phone, but in the 3 days I've owned it, I've had one issue after another.  Dropped Audio to other Verizon customers.  Camera flash causing the phone to reboot.  And now this issue.   I hate to return it, but I'm running out of time.
    Rich

  • Safari 8 hover does not work over google map location pins

    OS X 10.10.1,   Safari 8,  Java 8-25
    I have always had little odd things not work when using safari on a large % of websites I visit,  the latest issues are
    no response when hovering over google map location pins, travel site calendars not opening or responding to mouse, drag and drop
    show the item being dragged several inches away from the actual pointer, some links don't respond, missing items
    or odd layout with print or pop ups going off the screen on some website pages, zooming in and out does not help. I have none
    of these issues when using Firefox or Chrome. Been using Safari for 4 years now.

    Have you tried a PRAM and an SMC reset? They're longshots, but don't take long to try.
    PRAM: http://support.apple.com/kb/HT1379
    SMC: http://support.apple.com/kb/HT3964
    Have you run Apple Diagnostics from the disc(s) that shipped with the computer?
    Since the problem occurs in all browsers, it still sounds like a video hardware or video RAM or maybe a software issue having to do with layers and rendering.
    The map layers aren't getting rendered, or if rendered, aren't getting displayed.
    Do you have any browser add-ins? Pop-up blockers?
    Since you have two video chipsets, it's possible that might be related to the issue.
    This non-Apple website talks about switching between chipsets on the various MacBook models so equipped, and points to a free 'donationware' program for the menubar that lets you easily switch between chipsets:
    http://www.everymac.com/systems/apple/macbook_pro/macbook-pro-unibody-faq/macboo k-pro-unibody-switching-between-graphics-processors.html
    Trying to think of other software that might help pinpoint the problem, does the iPhoto Slideshow 'Shatter' template work? Working properly, it 'shatters' images into several color layers and rotates them in and out to build and deconstruct photos.

Maybe you are looking for