Google Maps and Mapviewer with SRID 8307 like the SRID display.

LJ recently published the very concise example (thanks!) of the google maps display in mapviewer on his blog.

Questions to which I am soliciting answers to form the forum is:

(1) for the use of Google map tiles, is the assumption that made the SRID for the card will, or should be SRID 3785?
(2) the ability to google does support the tiles from google to be crushed on a map of mapviewer with SRID 8307 upward? (I ask because we tried and we have the offset of the scale - perhaps zoom levels must be set to 20?)

Thank you

Stone

Not that I know of. Used 3785 and 11.1.0.6, 11.1.0.7 without problems.

Send me msg of error MapBuilder.
And entry of user_sdo_geom_metadata for the table, the column that contains the data in 3785.

Tags: Fusion Middleware

Similar Questions

  • When you print maps with directions from Google Maps, I can print only part of the directions.

    When I select print in Google maps and printing, the first page is the card belongs to the second page of directions and the third page is empty. I tried in Safari and it does not happen here - the map and directions of how printing which should. This began to happen in Firefox about two weeks ago. I tried to adjust the print settings in Firefox and I have also reset the print settings in topic: config. So far, nothing has worked. I use a HP OfficeJet Pro 8600 and I have not had similar problems in the past.

    Thank you!

    Unfortunately, Google has changed the layout of the page. He added a style rule to the list of instructions that 47 of Firefox are not pages, or in other words, Firefox keeps the direction together as a block list so that you can print as many this block gives on one page. The only way to work around this problem now is to 'hack' the page to override to this rule. If all goes well it will be fixed in a next version of Firefox.

    To hack the page, you will encounter a small script in the Web Console. If you find that you need to do it often, you could create a bookmarklet (a script attached to a bookmark) so it is a one-click operation.

    Non-reusable method

    (A) select this script all over and do a right click > copy:

    document.querySelector('div.widget-pane-section-listbox.widget-pane-section-listbox-root').style.display="block";

    Update:

    document.querySelector('div.section-listbox.section-listbox-root').style.display="block";

    (B) in the tab with the instructions to print page, open the Web Console of Firefox in the lower part of the tab by using one of the following methods:

    • CTRL + SHIFT + k
    • button '3-bar' menu > developer > Web Console
    • (menu bar) Tools > Web Developer > Web Console

    (C) click next to the circumflex accent (>) at the bottom of the Web Console and paste the script (Ctrl + v or right click > paste) and press ENTER to run it.

    (D) close the web console, using the little 'x' on the right end of the bar ad detective, Console, etc., or the hotkey Ctrl + Shift + i could do.

    If you go to preview before printing, you should now see the list over several pages normally. Success?

    Create a Bookmarklet

    A bookmarklet is a small script that you can save on your Favorites or bookmarks Menu, bar in a convenient place. Here's how to create that:

    (1) select the entire script, and then right-click > copy:

    javascript:void(document.querySelector('div.section-listbox.section-listbox-root').style.display="block");

    (2) a comfortable place on your bookmarks bar or Bookmarks Menu with the right mouse button and choose new bookmark

    (3) click the empty box next to location, and then paste the script

    (4) to assign a relevant name like GooMapPrint

    (5) click on the add a bookmark button

    To test, after loading the view 'print' instructions, click on the button. When you call in print preview mode, the steps should be paginated normally.

    (Some sites use a security policy content to prohibit external scripts to be applied. On these sites, bookmarklets don't work - but at least so far, Google does not only.)

  • In google maps, after seeing satellite or view, links on the map does not work, I have to charge google maps and start all over again

    When I open google maps, the links displayed on the maps can be used. However, if I change to a view street or satellite view and then return to the display of the base map, links displayed on the map is no longer working. I have to leave google maps and reload to get the links to work again.

    Hello peterronald, many site problems can be caused by corrupted cookies or cache. To try to solve these problems, the first step is to clear cookies and cache.
    Note: This will be you temporarily disconnect all sites, you're connected to.
    To clear the cache and cookies to do the following:

    1. Go to Firefox > history > clear recent history or (if no Firefox button is displayed) go to tools > clear recent history.
    2. Under "Time range to clear", select "all".
    3. Now, click the arrow next to details to toggle the active details list.
    4. In the list of details, see the Cache and Cookies and uncheck everything.
    5. Now click the clear now button.

    More information can be found in article to clear your cache, history, and other personal information in Firefox .

    This solve your problems? Please report to us!

    Thank you.

  • Issue of domain Google Maps and service

    Hello!

    I have a question about Google Maps and service areas.

    If I'm traveling and I'm going in and out of phone service, my google maps will continue to navigate?

    Thanks for all the answers!

    You're right Jay, but there is a setting in the cards that you may want to check. Open the cards and press on Menu > more > Cache settings > Prefetch on mobile. I think this make sure that once you have set up a route that she will prefetch all necessary tiles and store them on the phone so that if you lose a data connection that you will not lose the card too.

    Maps are directly related to your data connection. Even if the phone has a GPS signal, it will be able only to view or obtain cards if she has a data connection. If the phone Prérécupère all the tiles in a particular card that the data connection is not necessary and you won't have to worry about entering into the poor reception or no service areas. I hope this helps.

  • Maps JSON data with two data in the list

    Hey all,.

    Been working with JSON data and informing the lists for a some time now, but im stuck now on a single set of data.

    The data structure is the following:

    [
         {
              data: {
                   children: [ {
                        {}
                        {}
                        {}
                   } ]
               }
         }
    
         {
              data: {
                   children: [ {
                        {}
                        {}
                        {}
                   } ]
               }
         }
    ]
    

    The data that I take care of normally contains one of these structures and not 2 as in the above data. So what follows could could work:

                                    const QByteArray response(reply->readAll());
            ArrayDataModel *model = new ArrayDataModel();
    
            bb::data::JsonDataAccess jda;
            QVariantMap results = jda.loadFromBuffer(response).toMap();
            QVariantList children = results["data"].toMap()["children"].toList();
    
            model->append(children);
            mListView->setDataModel(model);
    

    However, it is now giving me an empty list. So how can I limit the above code to analyze and insert only the 2nd set of JSON data in the list?

    Please let me know if it needs to be clarified. Any help is appreciated. Thank you!

    Hello

    It contains a list of maps. Have you tried something like the following:

    bb::data::JsonDataAccess jda;
    QVariantList results = jda.loadFromBuffer(response).toList();if (results.size() >= 2){
        QVariantMap secondSet = results.at(1).toMap(); // to get the second map
        QVariantList children = secondSet["data"].toMap()["children"].toList();
        model->append(children);}
    
  • After you have installed Windows 10 and signature with password (Windows 7), the following screen (I guess the desktop of Windows 10) just flashes and the arrow cursor just spins.

    After you have installed Windows 10 and signature with password (Windows 7), the following screen (I guess the desktop of Windows 10) just flashes and the arrow cursor just spins.  Try to understand the problem.  Can I try to reinstall? Problem is on flashing screen cannot do anything.

    Original title: Windows 10

    Hello

    Thanks for posting in the Microsoft Community.

    (1) do the Windows 10 installation process is complete?

    (2) you are able to view the Windows 10 desktop?

    You can check the help below article and check if it helps.

    http://Windows.Microsoft.com/en-us/Windows-10/troubleshoot-screen-flickering

    If the problem persists, you can reinstall Windows 10 by downloading an ISO image file to create installation media.

    To download an ISO image see the link below:

    https://www.Microsoft.com/en-us/software-download/Windows10

    To create an Installation media check out the link below.

    http://Windows.Microsoft.com/en-us/Windows-10/media-creation-tool-install

    It will be useful. Please get back to us with the State of the question.

    Thank you.

  • Acrobat Reader DC will not install. It goes about 85% and stops with a message that the file I am trying to achieve is on a network and not available.  Totally frustrated that many files need this program to open.

    Acrobat Reader DC will not install. It goes about 85% and stops with a message that the file I am trying to achieve is on a network and not available.  Totally frustrated that many files need this program to open.

    I got this program for years.  Update Windows 10 and after nothing more than headaches with he returned to Windows 7 and it is then Acrobat has stopped working.

    Hi lindat7439924,

    There is no uninstall for Mac Reader program. You can directly delete the application from the Applications folder, which is just trash/Applications/Adobe Reader.app.

    Then you can download Adobe reader from here: http://get.adobe.com/reader/enterprise/

    Kind regards

    Meenakshi

  • JavaFX with Google Maps and JavaScript callback

    Hi all

    I wanted to create an application in javafx where use can click on the google maps map and the application will save the x - y coordinates. I found this

    Article on the experience of java fx cards in JavaFX 2.0 / / JavaFX News, demos and Insight / / FX experience and that worked very well. But this example

    does JavaFX to javascript.

    Now, I added this method to their java script:

     google.maps.event.addListener(document.map, "click", function(event) {
        var lat = event.latLng.lat();
        var lng = event.latLng.lng();
        // populate yor box/field with lat, lng
        alert("Lat=" + lat + "; Lng=" + lng);
    });
    

    and it works if I call the page html by itself. But if I click on the card inside my javafx application, no popup will appear. That, probably something with the webengine

    but I don't need the popup, I need information lat and LNG in my java fx application.

    Anyone have an idea how to realize that?

    Thank you

    Hauke

    See this section of the tutorial.

    Also, since you mentioned that the alert box has not been indicated, if you don't want this feature at some point, you can register a handler with the WebEngine onAlert.

  • I signed up for google chrome and especially with my hotmail, I get no "messages from resonding with icon to the angry face that looks like a computer. What is going on?

    I recently switched to google chrome Internet Explorer, but now I get the message "not responding" appear when I use my email hotmail etc. I can be hit an email and all of a sudden everything stops and I get these messages and to kill the pages or wait for a question answers do not. I don't know what that means or how to fix it. All the answers?

    Request support from Google Chrome.

  • Google Maps and KMZ files

    Does anyone know how to get Coldfusion to display a KMZ layer on a google map? I have a google map which has several layers and it works very well but we would like the plan to display a KMZ file as a layer. The KMZ file is located in the root of the web directory.

    ! - Start of map->
    < script src =http://maps.google.com/maps?file=api & amp; v = 2 & amp; key = mykey
    Type = "text/javascript" > < / script >
    "< script src ="http://earthcode.com/downloads/gzoom.js"type =" text/javascript"> < / script >"
    "< script src ="http://gmaps-utility-library.googlecode.com/svn/trunk/markermanager/1.1/src/markermanager. js "> < / script>.
    < script type = "text/javascript" >
    function initialize() {}

    If (GBrowserIsCompatible()) {}

    <! - 1 card - >
    map1 var = new GMap2 (document.getElementById ("map_canvas1"));
    Map1.setCenter (new GLatLng(31.970804,-86.682129), 4);
    Map1.setMapType (G_HYBRID_MAP);
    Map1.setUIToDefault ();

    Create an icon of basis for all of our benchmarks that specifies the
    Shadow, icon size, etc..
    var baseIcon = new also (G_DEFAULT_ICON);
    baseIcon.shadow = "http://www.google.com/mapfiles/shadow50.png";
    baseIcon.iconSize = new GSize (20, 34);
    baseIcon.shadowSize = new GSize (37, 34);
    baseIcon.iconAnchor = new GPoint (9, 34);
    baseIcon.infoWindowAnchor = new GPoint (9, 2);

    Creates a marker which the Info window displays the corresponding letter
    to the index given.
    function createMarker (point, title, contact, ICAO, iwwc, letter) {}
    Create an icon that symbolized to this point using our icon class
    var letteredIcon = new also (baseIcon);
    letteredIcon.image = "http://www.google.com/mapfiles/marker" + letter + "'.png"; "

    Set up our GMarkerOptions object
    markerOptions = {letteredIcon: icon, title: title};
    var marker = new GMarker (point, markerOptions);

    GEvent.addListener (marker, "click", function() {}
    marker.openInfoWindowHtml ("< u > < b >" + title + "< /b > < / u > < br / > < b > phone: & nbsp < /b >" + contact + "< br / > < b > ICAO: & nbsp < /b >" + ICAO + "& nbsp & nbsp & nbsp & nbsp & nbsp < B > IWWC: & nbsp < /b >" + iwwc);
    });
    return marker;
    }
    <!-/ * OVERLAYS card 1 * /-->

    Map1.addOverlay (createMarker (new GLatLng(41.939,-72.688), "Bradley International Airport", "DSN 220-2312", "KBDL", "CT3", "A"));

    ColdFusion will have nothing to do with KMZ and Google Maps.  Google Maps is a client technology that use JavaScript.  Have your CFML deliver the appropriate JavaScript Google Maps API expects inside some relevant HTML and browsers that can display your desired map.

    ColdFusion do not even know it happened, he left for another application.

  • GOOgle maps and the problems of flash cs4

    Hello, I have a problem.

    I did a site in Flash cs4 with several pages that you enter by clicking on the button.

    Then in one of the pages I wanted to insert google map so I did the installation of the google maps.

    Then, I entered a keyframe and insert the ActionScript for the google map:


    import com.google.maps.LatLng;
    import com.google.maps.Map;
    import com.google.maps.MapEvent;
    import com.google.maps.MapType;
    import com.google.maps.InfoWindowOptions;
    import com.google.maps.LatLngBounds;
    import com.google.maps.MapMoveEvent;
    import com.google.maps.overlays.Marker;
    import com.google.maps.overlays.MarkerOptions;
    import com.google.maps.interfaces.IPolyline;
    com.google.maps.services import. *;

    var dir:Directions;
    var polyline:IPolyline;
    var map: map

    function setupMap() {}

    map = new Map();
    Map.Key = "ABQIAAAA38eqZ79rYEIJwNYsDl4kqO9UF00lgandsoandso... » ;
    map.setSize (new Point (800,500));
    Map.x = 150;
    Map.y = 150;
    map.addEventListener (MapEvent.MAP_READY, onMapReady);
    this.addChild (map);

    }
    setupMap();

    function onMapReady(event:Event):void {}

    dir = new Directions();
    dir.addEventListener (DirectionsEvent.DIRECTIONS_SUCCESS, onDirectionsLoaded);
    dir. Load ("Belgrade");

    }
    function onDirectionsLoaded(event:DirectionsEvent):void {}

    }

    GOOGLE MAP WORK NICE BUT,

    I have a problem when I go to another page google map stays on this page too...

    with a page from the last keyframe apearing on other pages, I always solved with the entry BLANK KEY FRAMES BETWEEN THEM IN A TIMELINE.

    THIS IS ACTIONSCRIPT...

    I do not know how to stop google map when I go to the other page, his trips, he...

    pls help I have more solutions.

    Thank you

    I fairly well supplied all the necessary details in what I have described.  Create a new movieclip with nothing in it symbol.  Place it in a frame where you want the card to appear in the timeline and assign it an instance name ("emptyMC" works).  In the code that show you, change...

    this.addChild (map);

    TO

    emptyMC.addChild (map);

    This should work unless there is something on Google maps that I know not (which is very likely since I haven't used their is still Flash)

  • Google maps and maps does not not on iOS10/iPhone 7

    Since I have the iPhone 7 and by doing so updated to iOS10 my Google Maps constantly I am at home. I've deleted and reinstalled and it worked brielfy before stopping in a random place, and then finally get back to me at home. The possible reasons for this!

    It is also haopening for me. So frustrating. It is slightly different because he doesn't think I'm home but in random places and his /voice not even always on. It is not up-to-date or for example, if it says, turn left into 4.4 mikes he doesn't know that I have reached the turn. No warning without voice. Nothing.

  • Frequent crashes repeatedly on google maps and eBay and even on this page

    I am writing from Internet Explorer because this page is snding firefox head first in an accident. I'm one of the first fans of firefox, but lately, it's crashing frequently on some sites. eBay item pages that have demos 3d and google maps are 2 examples. Even this page crashed whenever I started to be reported in firefox. This is the last story of crashes:

    bp-68825b1c-d0d4-47cb-b438-0fff12150703	03-07-2015 09:35
    bp-49d7b151-bebb-4df2-87c9-fb4432150703	03-07-2015 09:34
    bp-0a372c48-edd9-4f05-a8b2-b0f182150703	03-07-2015 09:31
    bp-2bfe9d6f-43f7-403d-af69-b58662150703	03-07-2015 09:31
    bp-fe1c5913-252f-4f7f-a9d3-3e5392150703	03-07-2015 09:31
    bp-d1792566-6708-41dd-99cd-f269f2150703	03-07-2015 09:31
    bp-a555d8ef-6905-496b-aba6-4e0882150703	03-07-2015 09:22
    bp-ff91fefd-db6c-4b5b-be02-9820e2150703	03-07-2015 09:13
    bp-f34ac69d-a628-4769-b663-72ae12150702	03-07-2015 00:44
    bp-0ba8a0a0-d397-4723-b613-5eb542150702	03-07-2015 00:37
    bp-9a044f47-306d-419f-a895-a159b2150702	03-07-2015 00:37
    bp-3d622a29-ffa7-498c-8da5-a05b92150702	03-07-2015 00:36
    bp-a0879c67-4b66-4a6e-8e43-e88282150702	02-07-2015 10:11
    bp-c8c568fc-1c02-462a-be08-d12832150702	02-07-2015 06:01
    bp-0742da0e-5764-48a4-96a7-e17912150702	02-07-2015 05:46
    bp-7884e06f-0ba7-4b47-b063-01e3e2150702	02-07-2015 05:46
    bp-6fb32f5a-74f7-4c56-9799-f017c2150702	02-07-2015 05:45
    bp-6ce2862c-902f-4da7-8970-365bc2150701	01-07-2015 06:05
    bp-365d9d26-8a75-4b54-88b3-576882150701	01-07-2015 06:01
    bp-7a3f33b8-cf6e-411b-b7d1-d3c3c2150701	01-07-2015 06:01
    bp-e9795bb3-4bf8-4eb0-a8aa-ddff42150701	01-07-2015 06:01
    bp-04fe1a45-85c4-4b7f-9c27-b58182150630	30-06-2015 18:55
    bp-e6316832-c197-4a68-ac4c-cd2c52150630	30-06-2015 18:55
    bp-8bba090a-76bc-4b7c-b863-c14862150625	25-06-2015 20:13
    bp-565b3b95-f4b6-4268-bd09-8e00a2150625	25-06-2015 20:13
    bp-42b1c660-73ec-42e5-b193-2677c2150625	25-06-2015 20:13
    bp-6333e81e-48d5-465b-a28f-daa062150625	25-06-2015 20:13
    bp-7fb0a93f-85da-4cba-ab80-4ff0f2150624	25-06-2015 01:16
    bp-8e3f4772-0a03-486b-aeda-b95e52150624	25-06-2015 00:48
    bp-3917e3dd-0bfe-4570-8492-beb732150624	25-06-2015 00:46
    bp-0d790193-9cfe-4784-a93b-aceb12150624	25-06-2015 00:45
    bp-5de403cc-a31a-40a8-9785-1f1052150624	25-06-2015 00:45
    bp-86e6b24d-12ae-4f94-b76f-0b64e2150624	24-06-2015 06:09
    bp-bafca96a-136a-4ae9-9995-44ffe2150622

    Hi rupysk, please try to install a newer version of displaylink drivers for your system of http://www.displaylink.com/downloads/downloads.php and then upgrade to firefox 39. I hope that this should address these accidents.

    Update to the latest version of Firefox

  • I enabled 3d in google maps, and now it crashes firefox whenever I open maps. Help!

    I have a mac, and I've been using google maps. I tried to find the points of view of the real buildings on maps and clicked on the 3D option in the lower left corner. That caused an immediate crash of firefox and has made whenever I try to open google maps. The window is not open long enough for me to try and uncheck this option. Please tell me how to recover my google maps! Thank you

    Thank you, thank you, thank you!

    I cannot say which of the many cookies was the author of the offence, so I had to remove all... what I know is going to mean I lost some convenience, but it was worth it. For later use, is there a way to know what cookie is causing the problem?

  • BlackBerry Smartphones Blackberry Maps and the India and Google maps and COD 907 error

    Hey! so are blackberry maps available in India yet? do not appear on my curve 9360...
    You can also im unable to download google aps it says Error 907 something on an invalid COD
    any idea anyone?

    Finally, I read, no BlackBerry Maps is not available in India

    And the data source is in fact TomTom, not Google Maps.

    I recommend that you use Google Maps, personally, they are a bit softer and richer than BBMaps.

Maybe you are looking for