Web: GeoTag Map

Lightroom has the ability to GeoTag and Map files showing where they were taken.  Suggestions developing on this:
1. Colour code image marker dots by year photo taken
2. Allow GPS track/photo-photo (dot-dot style) track to be displayed
3. Allow users to create GeoTag map view to be exported into a website that automatically updates with photo additions/changes etc (Google View style)
4. Integrate eCommerce to the photos (PhotoDeck style)
Cheers, Craig

You opened "it" - not sure what that means.
When you open the Photos app, the bottom should say "photos" somewhere. When you click on that, you may see "Collections" or "Moments" on top.
You should then see rows of photos roughly arranged by date taken, with location information spelled out.
Click on a spelled out location to be taken to a map.

Similar Messages

  • WEB BASED MAPPING APPLICATION TO DEVELOP QUERY UTILITY USING MAPVIEWER

    Dear Sir,
    please any one can answer me as soon as possible its very urgent
    WEB BASED MAPPING APPLICATION TO DEVELOP QUERY UTILITY USING MAPVIEWER
    I     As oracle mapviewer Chapter 8 (Oracle Maps) says generating our own Web based mapping application we are trying to generate our own maps for our own data contains in our layers like example boundary lines and roads and etc. and we are following complete example as described in Oracle Mapviewer Document Chapter 8.
    Before this step we tried with demo data downloaded from OTN mvdemo. And we downloaded latest demo today itself from the OTN and imported into our database schema called mvdemo. And we copied all three jar files mvclient and mvconnection and mvpalette into our jdeveloper .
    II.     We created a jsp to execute the following code from oracle mapviewer chapter 8 documents
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces" prefix="af"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/customizable" prefix="cust"%>
    <%@ taglib uri="http://xmlns.oracle.com/j2ee/jsp/tld/ojsp/jwcache.tld"
    prefix="jwcache"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/html" prefix="afh"%>
    <%@ taglib uri="http://xmlns.oracle.com/j2ee/jsp/tld/ojsp/fileaccess.tld"
    prefix="fileaccess"%>
    <%@ taglib uri="http://xmlns.oracle.com/j2ee/jsp/tld/ojsp/jesitaglib.tld"
    prefix="JESI"%>
    <f:view>
    <html>
    <head>
    <META http-equiv="Content-Type" content="text/html" charset=UTF-8>
    <TITLE>A sample Oracle Maps Application</TITLE>
    <script language="Javascript" src="jslib/loadscript.js"></script>
    <script language=javascript>
    var themebasedfoi=null
    function on_load_mapview()
    var baseURL = " http://localhost:8888/mapviewer/omserver";
    // Create an MVMapView instance to display the map
    var mapview = new MVMapView(document.getElementById("map"), baseURL);
    // Add a base map layer as background
    mapview.addBaseMapLayer(new MVBaseMap("mvdemo.demo_map"));
    // Add a theme-based FOI layer to display customers on the map
    themebasedfoi = new MVThemeBasedFOI('themebasedfoi1','mvdemo.customers');
    themebasedfoi.setBringToTopOnMouseOver(true);
    mapview.addThemeBasedFOI(themebasedfoi);
    // Set the initial map center and zoom level
    mapview.setCenter(MVSdoGeometry.createPoint(-122.45,37.7706,8307));
    mapview.setZoomLevel(4);
    // Add a navigation panel on the right side of the map
    mapview.addNavigationPanel('east');
    // Add a scale bar
    mapview.addScaleBar();
    // Display the map.
    mapview.display();
    function setLayerVisible(checkBox){
    // Show the theme-based FOI layer if the check box is checked and
    // hide the theme-based FOI layer otherwise.
    if(checkBox.checked)
    themebasedfoi.setVisible(true) ;
    else
    themebasedfoi.setVisible(false);
    </script>
    </head>
    <body onload= javascript:on_load_mapview() >
    <h2> A sample Oracle Maps Application</h2>
    <INPUT TYPE="checkbox" onclick="setLayerVisible(this)" checked/>Show customers
    <div id="map" style="width: 600px; height: 500px"></div>
    </body>
    </html>
    </f:view>
    <!--
    <html>
    <head>
    <meta http-equiv="Content-Type"
    content="text/html; charset=windows-1252"/>
    <title>mapPage</title>
    </head>
    <body><h:form binding="#{backing_mapPage.form1}" id="form1"></h:form></body>
    </html>
    -->
    <%-- oracle-jdev-comment:auto-binding-backing-bean-name:backing_mapPage--%>
    III.     When we run this jsp it’s giving us following Two errors
    1     Error:     ‘MVMapView’ is undefined
         Code:     0
         URL:     http://192.168.100.149:8988/MapViewerApp-WebProj-context-root/faces/mapPage.jsp
    2     Error:     ‘themebasedfoi’ is null or not an object
         Code:     0
         URL:     http://192.168.100.149:8988/MapViewerApp-WebProj-context-root/faces/mapPage.jsp
    Please let us know what could be problem as soon as possible. Very urgent
    Please let us know where we can find Mapviewer AJAX API’s for Jdeveloper Extention
    Thanks
    Kabeer

    I currently use parameters, and they are passed from the form to the report. Report is then generated based on a function returning ‘strongly typed’ cursor. The ‘strongly typed’ cursor in my case returns a record consisting of an orderly collection of fields.
    This collection of fields is returned by another function that relies on the IF … THEN logic.
    However, the number of IF ... THEN statements is quite large (currently 64 covering all possible combinations of 6 parameters available in the form).
    I would like to avoid the large number of IF … THEN statements, and hope that there is a way of passing a string to a query, where the Dynamic SQL would in Select close and Where close reflect parameters passed by the form.
    In addition to this I would like to avoid creating and populating a table or a view dedicated to the report, because this may lead to a conflict in case of multiple users concurrently generating reports with different choice of parameters.
    Edited by: user6883574 on May 28, 2009 9:16 PM

  • WSDL generated by web service map

    Hi,
    I am totally new to ODSI. I noticed that the WSDL generated by the Web Service Map for a Data Service always contains two schemas in the types section, with an import directive in the first schema which refers to the second. The structure of the types section is something like this:
    <types>
    <xs:schema>
    <xs:import namespace="N1">
    </xs:schema>
    <xs:schema targetNameSpace="N1">...</xs:schema>
    </types>
    The question is : is it possible to have a single schema instead of two in a logical data service? In other words, to what extent can the WSDL be customized?
    I apologize in advance if the question is dumb, but as I have said, I am totally new to this product.
    Thank you very much for your help
    Alberto

    The request and response elements will always be generated in the form below. It cannot be customized.
    <xs:schema targetNamespace="ld:hello_ws" elementFormDefault="qualified" xmlns:stns="ld:hello_ws" ... >
    <s:element name="HelloWorld">
    <s:element name="HelloWorldResponse">
    </>
    Unless the targetnamespace for your logical data service matches, there will always need to be a second schema element.
    Your logical dataservice can have whatever schema you want.

  • Web Service mapping file

    You will be greatly appreciated if you can help me on following question:
    In a web service mapping file, under <java-xml-type-mapping> element, either <anonymous-type-qname> or <root-type-qname> is valid element according to schema. My question is which one should be used under which situation?
    Thanks,
    Michael
    ===========
    Mapping file
    ===========
    <java-wsdl-mapping xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
    http://www.ibm.com/webservices/xsd/j2ee_jaxrpc_mapping_1_1.xsd"
    version="1.1">
    <package-mapping>
    <package-type>test</package-type>
    <namespaceURI>http://test/</namespaceURI>
    </package-mapping>
    <java-xml-type-mapping>
    <java-type>test.Status</java-type>
    <anonymous-type-qname>{http://test/}Status</anonymous-type-qname>
    <qname-scope>complexType</qname-scope>
    ==========
    Schema
    ==========
    <xsd:sequence>
    <xsd:element name="java-type" type="j2ee:java-typeType">
    <xsd:annotation>
    <xsd:documentation>The java-type element is the fully qualified class name of a Java class, primitive, or array type.</xsd:documentation>
    </xsd:annotation>
    </xsd:element>
    <choice>
    <xsd:element name="root-type-qname" type="j2ee:xsdQNameType"> <xsd:annotation>
    <xsd:documentation>The root-type-qname identifies the WSDL QName of an XML type.
    </xsd:documentation>
    </xsd:annotation>
    </xsd:element>
    <xsd:element name="anonymous-type-qname" type="j2ee:string">
    <xsd:annotation>
    <xsd:documentation>The anonymous-type-qname identifies the WSDL QName of an anonymous XML type.
    </xsd:documentation>
    </xsd:annotation>
    </xsd:element>
    </choice>

    I am stuck here with the same problem - don't know what to do with the (required) Mapping File.
    Has anyone found out?
    Please let me know.
    Best,
    Philipp
    [email protected]

  • I am trying to find a method to customise the pin icon on Web Apps map display

    Hi all,
    We are trying to find a method to customise the pin icon on Web Apps map display. This is the page that we are working with, it has 2 categories of locations.
    http://www.corporategames.net.au/aus/Sport/venue-map
    I want to be able to set the pin either at a web app item level or a category level.
    Any ideas?
    Thanks,
    Jude.

    There's really no simple answer to your problem but I think this link is a good place to start
    http://code.google.com/apis/ajax/playground/#custom_marker_image_v3
    Also, there are lots of examples of what you want here:
    https://developers.google.com/showcase/
    But how you apply this to your needs is likely something that's gonna keep you up through many nights and coffees!
    @webmospherehttp://www.webmosphere.co.uk/

  • Routing data from web ovi map TO my mobile device

    How can I transfer the route data from web ovi map to my cell phone (E66) an using it for navigation?

    within your phone application you can synch.
    Depends on your phone's map-version, where that is... check the menu-area "favourites"...

  • GIS - Realize Drill Down with the Web Item "Map" (WAD)

    Hi experts,
    can somebodye tell me how to realize a drill down (on mouse click) on the web item map (Web Application Designer) ? To drill down in a map from a country to a region for example. I need the function "filter and change drill down" on mouse click.
    Thank you.
    Junkovic, Daniel

    Hey,
    I am just copying your answer, you gave in another thread, to limit the search time for other users:
    italics What worked was another possible way, e.g. to maintain the SAPBWKEY in the Arcview software delivered by ESRI. Using the Arcmap -application.
    -Rightclick on the respective layer, then 'Open Attribute Table'
    -Press Button 'Options': Add field. Name = SAPBWKEY, 'Type' depending on your characteristic
    -Next Step: Editor ( a menue you need to load into ArcMap) --Start Editing
    -Then again: Rightclick on the respective layer, then 'Open Attribute Table'
    -Now you can maintain values for the SAPBWKEY
    -Editor: Stop Editing (save changes)
    Rightclick on the respective layerData-Export data
    The last step exports the modified shapes files, which can then imported to your info object.italics
    Greets
    Marcus

  • Web Url Mapped Folders  feature in Framework Folders

    Hi All,
    Does Framework folder provide web Url Mapped folder feature.
    More details of this feature can be found in kyle blog. [https://blogs.oracle.com/kyle/entry/web_url_mapped_folders_exposed]
    regards,
    Deepak

    You should be able to use the WebUrlMapPlugin to create a URL that does what you need.
    http://docs.oracle.com/cd/E21043_01/doc.1111/e10792/c02_settings006.htm
    http://docs.oracle.com/cd/E23943_01/doc.1111/e11011/c08_frameworkfolders.htm#CHDCBDBJ
    Also, see this thread: Re: FrameWork Folder Documentation
    If you need it to show up on the Content Information page, you may need to edit a dynamichtml include.
    Jonathan
    http://jonathanhult.com

  • Web.xml mapping not working

    I have a servlet located at com.conversion.web called leftNavReader.java
    I'm trying to access this servlet on my localhost with the following URL: http://localhost:8080/Conversion/start
    but I keep getting this error:
    HTTP Status 404 - /Conversion/start
    type Status report
    message /Conversion/start
    description The requested resource (/Conversion/start) is not available.
    Here is what my web.xml looks like:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app>
         <display-name>DataConversionWeb</display-name>
         <servlet>
              <servlet-name>start</servlet-name>
              <display-name>Start</display-name>
              <servlet-class>com.conversion.web.leftNavReader</servlet-class>
         </servlet>
         <servlet-mapping>
              <servlet-name>start</servlet-name>
              <url-pattern>/start</url-pattern>
         </servlet-mapping>
    </web-app>
    Does anyone have any idea why I'm getting this error?

    Since the spaces may cause problems and I have
    everything in the My Projects directory, I decide to
    just start from scratch. Very good.
    But... someone else
    installed eclipse for me and set that up, so I may
    need some help with that, not sure if you can help.As far as I know Eclipse can also be Unzipped to any folder, and
    theres a file called eclipse.exe , one would simply double click on that to invoke eclipse. I don't think you would have to re-install Eclipse.
    You could create a new project, and set
    C:\dev\projects\Conversion\ as your Eclipse Workspace .
    But lets put Eclipse on hold for now, we can still configure this whole project manually without Eclipse, which will help you understand what's going on under the hood. Also, in the beginning it's simpler to configure independent of the IDE.
    So I recommend that you save your work, uninstall
    Tomcat 6.0.x and re-install it on a path thatdoesn't
    have any spaces in it.
    For example:
    C:\dev\tomcat\ So I've uninstalled tomcat and re-installed in
    c:\dev\tomcat as recommended...Good, I assume that immediately under C:\dev\tomcat\ folder you see folders like bin, conf, webapps etc
    Assuming that Tomcat was Unzipped to the above
    folder. and there isn't another main folder underthe
    above folder, set you system envrionment variable
    CATALINA_HOME to the above folder.How do I do this?On MS Windows, click Start ---> Settings ----> Control Panel
    Look for System , --> Doubl Click on System -----> Click on the Advanced tab ----> then under the "System Variables" panel ------> Click on New button -------->
    in the Variable Name: type CATALINA_HOME
    in the Variable Value: type C:\dev\tomcat
    Then click Ok , that will set CATALINA_HOME to C:\dev\tomcat
    ~~~~~~~~~~~~~~~~~~~~~~~~~~
    There's a RUNNING.txt file under Tomcat's folderthat
    explains configuring it. Tomcat expects JAVA_HOMEto
    be set to your JDK's root folder . Again if JDK is
    installed on a path that has spaces then Irecommend
    installing it on a path with no spaces forexample:
    C:\dev\jdk\
    Similarly , follow the above steps to set JAVA_HOME to C:\dev\jdk
    Also, under System Variables you may see a variable called Path
    If it doesn't exist , then create a new one, if it already exists then add the following to the Path variable. (notice how the semi colon is used as a separater)
    ;%JAVA_HOME%/bin;%CATALINA_HOME%/bin;
    By setting the above you will be able to call
    java , javac and Tomcat's startup.bat and shutdown.bat from anywhere on the DOS Command line.
    >>
    ~~~~~~~~~~~~~~~~~~~~~~~~~~I've moved the jdk to the director as recommended,
    but not sure hot to set the JAVA_HOME.See above...
    I haven't even gotten through the rest of your post
    yet, as I need to work on getting Eclipse set up
    again too Leave Eclipse for later ---- it will just complicate things for now.
    Once you have the project runnun under Tomcat we can figure out Eclipse.
    and I figure I might as well set up my
    "new" project using Virtual Hosts from the beginningLeave Virtual Host for later ------ it is easy to understand , I will explain it later , once you have the above basic set up running.
    and do this right... This is quite the learning
    experience ;)First , second and third time it is... but if you do this often, it will get much easier.

  • Tomcat 404 error until I apply this change to my web.xml mapping

    What is the purpose of the /servlet/ portion of the url-pattern in the servlet mapping element below.
    If I use the first few lines I get a 404 class not found error
    If I include /servlet/ in the url-pattern element then my app works fine ?????
    //Does not work
    <servlet-mapping>
    <servlet-name>login</servlet-name>
    <url-pattern>com.onjava.login</url-pattern>
    </servlet-mapping>
    //works !!
    <servlet-mapping>
    <servlet-name>login</servlet-name>
    <url-pattern>/servlet/com.onjava.login</url-pattern>
    </servlet-mapping>

    If the first mapping doesn't work and the second mapping works then my guess is that neither mapping is working. What may be happening is the invoker servlet may be enabled and that would explain why the /servlet url works.
    The invoker servlet is set up in the conf/web.xml file. This servlet will invoke a particular servlet using the class name and the /servlet url. In newer versions of tomcat the invoker servlet id disabled by default.
    Now the question is why does the servlet mapping not work? What version of tomcat are you running? Can you post the entire web.xml?

  • Web.Xml Mapping For using Filters in Servlets

    Hi Team
    Can any one help me in getting the correct xml mappiing for using filters
    Currently i am getting 404 error when calling any resource
    using the below mapping
    <web-app>
    <display-name>OM</display-name>
    <welcome-file-list>
    <welcome-file>Hello.html</welcome-file>
    </welcome-file-list>
    <filter>
    <filter-name>Basic Filter</filter-name>
    <filter-class>BasicFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>Basic Filter</filter-name>
    <url-pattern>/sample1</url-pattern>
    </filter-mapping>
    <servlet>
    <servlet-name>sample2</servlet-name>
    <servlet-class>com.ustri.xml.FilteredServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>sample2</servlet-name>
    <url-pattern>/sample1</url-pattern>
    </servlet-mapping>
    </web-app>
    Thanks
    santhosh

    As the messages tries to suggest, the elements under <web-app> must appear in a specific order. In particular the <filter> elements, if any, must appear before any <session-config> elements. That isn't the case in what you posted so it fails validation by the DTD.

  • Web Service Mapping

    Hi everybody,
    Just wanted to know, when mapping the operations if a web service interface to the Operation attributes of e.g the <receive> BPPEL element, how do we seperate the operations' name if we have more than one operation. i.e
    <receive ....... operation="op1","op2" />
    or
    <receive ....... operation="op1op2,op3" />
    I'll be grateful if anybody tells me how.!
    Regards& Thanks

    my comment was based on the understanding that you would have more then one operation that can trigger the process invocation ...
    I have published an article here - that should explain further ..
    http://clemensblog.blogspot.com/2006/03/support-for-mulitple-wsdl-operations.html
    hth clemens

  • WebI losing Mapping after BW Query element addition

    We are on 4.1 SP1. We have this WebI on top of BW Query via BICS. After creating simple report, we added one element in BW Query and then changed data source and picked same query, NOW WebI has lost its mapping and there is no report.. Please see attached document and advise  ,, Thanks a lot

    Hi Faisal,
    You should not have to use ChangeSource feature at all in this case, ChangeSource is intended for switching from UNV to UNX/BICS source or when you want to change Universe/BEx Query ...
    Here you just want to have a refreshed Universe on top of same BEx Query, which should work fine already if you edit query in WebIntelligence. In background there is a transient Universe generated each time so it takes into account modifications brought to your Query. (this is similar to what a refresh structure and then publish to Platform would do)
    Did you close your session before adding object and loading QueryPanel ? There could be some cache bringing same old Universe without leveraging your changes ...
    To make it safe I would save WebI document, close BILaunchpad session, re-logon and edit document and finally load QueryPanel : this would make sure no previous resources are being used when editing document.
    If you still have problems at this point then please create a ticket to Support to have it investigated.
    Regards,
    Loic

  • Spotlight doesn't show Web, Wikipedia, Maps results. Handoff breaks Mail.

    Hi everyone,
    I just upgraded my rMBP (2014) to 10.10. The features I was looking forward to most are currently not working for me. Maybe you can help or report similar issues.
    1) When using spotlight, it does not show any results from the web, no Bing search results, no Wikipedia entries. It also doesn't show any places via the maps application. Notably, the spotlight settings panel does not show an option to search wikipedia or maps, it does, however, have an entry for bing web search results. I tried unchecking everything except bing results, but still couldn't get spotlight to show anything. Is this a known problem or is something wrong at my end?
    2) I started composing an email on my IPhone (6, running 8.0.2) and was happy to see the handoff icon appear in the dock. Clicking it, however, resulted in Mail opening a new message composition window which first started to load (forever) before eventually crashing (Application stopped responding). This issue can be replicated (in fact I have run into it every single time I tried).
    Having seen 6(?) beta versions and still having major, feature breaking bugs in the final product is quite disappointing. The argument "hey, it's free, what do you expect?" doesn't count.
    Your suggestions are greatly appreciated.
    Chris

    Most probably web/wikipedia searches in spotlight are only available in select countries. Doesn't work here in India. 

  • Save web pages/maps

    I can't seem to save a page from the web or a map for use away from the wifi hotspot. What am I doing wrong? I'm using an 8GB Touch.

    Yes you can. I did the following experiment. While on the internet at home I went to my maps app:
    www.grapier.com/maps.html
    and pulled up my home location. I zoomed to the level that I wanted, and then disconnected from Wi Fi. Later in the day, when I was away, and not in any Wi Fi spot, I pulled out the touch, tapped on Safari, and went to the page where I had the map. I was able to view it, and - using the two-finger technique - scroll left, right, up and down. Imagine you're in the center box of a 3 X 3 cell, each cell is a touch screen window of the larger map. That's how far I could move around and still see the map. Of course I couldn't zoom in or out, but I could take and use the map. Other open windows carry the weather forecast from WeatherBug, notes from Noter, ...
    I also have an 8GB touch, running 1.1.2 - nothing special.

Maybe you are looking for