How can add search address option in MapKit.framework?

Hello All,
I want to make a MKMapView to get a user *current Location* and also he can find location *search by address*.
Please guide me.

Qickly changed Tramps to Gramps?
To place a google map in your site, have a look here http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=2187524. This will enable you to place a pin on your address.
To have your address placed in a google.com hosted site, you will need to Google the subject.
Tramps.
Oopps
Gramps

Similar Messages

  • How to add search criteria options in CRM UI?

    Dear all,
    we`ve recently updated to SolMan 7.1 SPS10 (source was SPS04). Now I`m struggling a bit with adding
    an additional search criteria to the Incident Management Search View.
    I already considered OSS Note 1918128 (same Title as this thread) and I was able to check this in our - not yet updated - Productive System
    where this has been implemented already.
    Adding the Object /AICRM/PROJECT_ID to the customizing table BTQSRVREQ in SPRO with some Operators didn`t make the trick
    See attached Screenshot.
    Can you please assist me how I can add an additional Search Criteria to the Icident Management Search context (selectable/Operators etc.?).
    Reason behind is - we`d like search for open / closed incident for certain Projects as filter criteria.
    In Addition it would be also great to know - How the Incident Management Standard View / Table can be extended
    by the column "Project ID".
    The Project ID itsself is already linked a new created Icident - hence I`m able check the Project assignment by opening
    a specific Icident and personalize the view.
    regards and many thx in advance
    Benjamin

    Hi Benjamin,
    Enhancing the one order framework search is a common topic available on a lot of threads and blogs, hence I will add a link here :
    SAP CRM Technical Tutorials by Naval Bhatt.: How to enhance Opportunity search for a custom date type
    You can refer to this blog for help but lastly it's all debugging and trying that will help you achieve this in your scenario
    /Hasan

  • How to add Search (Filter) option to my existing code?

    Hi,
    The following code works great. Just I want to add a Text Box to search the desired item from the huge list. Please help me in this regard. I would like to pay in return for any help & support provided as I am in urgent need of this code (I am from INDIA).
    [code]
    import fl.data.DataProvider;
    import fl.controls.dataGridClasses.DataGridColumn;
    import flash.events.Event;
    import flash.net.URLRequest;
    import fl.events.ListEvent;
    var COL_SLNO:DataGridColumn = new DataGridColumn("SL_NO");
    myGrid.addColumn(COL_SLNO);
    COL_SLNO.width=40
    var COL_DATE:DataGridColumn = new DataGridColumn("DATE");
    myGrid.addColumn(COL_DATE);
    COL_DATE.width=130
    var COL_PDFURL:DataGridColumn = new DataGridColumn("FILE_NAME");
    myGrid.addColumn(COL_PDFURL);
    COL_PDFURL.sortOptions = Array.NUMERIC;
    COL_PDFURL.width=195
    var allDatabase:Array = [];// contains all users like in xml
    var currentDatabase:Array = [];// contains users that need to be displayed
    var _loader:URLLoader = new URLLoader();
    var _data:XML = new XML();
    _loader.addEventListener(Event.COMPLETE, readXML);
    _loader.load(new URLRequest("EHSSDocs/Database.xml"));
    function readXML(event:Event):void
    _data = new XML(event.target.data);
    for each (var usr in _data.user)
    allDatabase.push({id: usr.@id, SLNO: usr.@SLNO, DATE: usr.@DATE, PDFURL: usr.@PDFURL});
    currentDatabase = allDatabase.concat();
    updateList();
    function updateList():void
    myGrid.dataProvider = new DataProvider ();
    for (var i:int = 0; i<currentDatabase.length; i++)
    myGrid.addItem({SL_NO: currentDatabase[i].SLNO, DATE: currentDatabase[i].DATE, FILE_NAME: currentDatabase[i].PDFURL});
    //myGrid.addEventListener(Event:ListEvent.ITEM_CLICK, gridItemClick);
    myGrid.addEventListener(ListEvent.ITEM_CLICK , gridItemClick);
    function gridItemClick (e:ListEvent):void
    var urlR:URLRequest=new URLRequest(e.target.getItemAt(e.rowIndex).FILE_NAME)
    navigateToURL(urlR, "_blank");
    I hope the following code may resolve the problem. But don't know how to modify it since I am retrieving data using XML file.
    [code]
    var itemTextInput:TextInput = new TextInput();
    itemTextInput.move(10, 10);
    itemTextInput.addEventListener(Event.CHANGE, changeHandler);
    addChild(itemTextInput);
    function changeHandler(event:Event):void {
    var arr:Array = dp.toArray();
    var filteredArr:Array = arr.filter(filterDataProvider);
    myGrid.dataProvider = new DataProvider(filteredArr);
    function filterDataProvider(obj:Object, idx:int, arr:Array):Boolean {
    var txt1:String = itemTextInput.text;
    var txt2:String = obj.item.substr(0, txt1.length);
    if (txt1.toLowerCase() == txt2.toLowerCase()) {
    return true;
    return false;
    Thanks in advance for any help.

    Still, There is no result shows in the DataGrid. The entire code is as below:
    import fl.data.DataProvider;
    import fl.controls.dataGridClasses.DataGridColumn;
    import flash.events.Event;
    import flash.net.URLRequest;
    import fl.events.ListEvent;
    import fl.controls.TextInput;
    var COL_IDNO:DataGridColumn = new DataGridColumn("SL_NO");
    myGrid.addColumn(COL_IDNO);
    COL_IDNO.width=30
    var COL_TAGNO:DataGridColumn = new DataGridColumn("TAG NUMBER");
    myGrid.addColumn(COL_TAGNO);
    COL_TAGNO.width=100
    var COL_DESCRP:DataGridColumn = new DataGridColumn("DESCRIPTION");
    myGrid.addColumn(COL_DESCRP);
    COL_DESCRP.width=260
    var COL_PDFURL:DataGridColumn = new DataGridColumn("FILE_NAME");
    myGrid.addColumn(COL_PDFURL);
    COL_PDFURL.sortOptions = Array.NUMERIC;
    COL_PDFURL.width=125
    var allDatabase:Array = [];// contains all users like in xml
    var currentDatabase:Array = [];// contains users that need to be displayed
    var _loader:URLLoader = new URLLoader();
    var _data:XML = new XML();
    _loader.addEventListener(Event.COMPLETE, readXML);
    _loader.load(new URLRequest("AdditionalJobs/Database.xml"));
    function readXML(event:Event):void
    _data = new XML(event.target.data);
    for each (var usr in _data.user)
    allDatabase.push({id: usr.@id, IDNO: usr.@IDNO, TAGNO: usr.@TAGNO, DESCRP: usr.@DESCRP, PDFURL: usr.@PDFURL});
    currentDatabase = allDatabase.concat();
    updateList();
    function updateList():void
    myGrid.dataProvider = new DataProvider ();
    for (var i:int = 0; i<currentDatabase.length; i++)
    myGrid.addItem({SL_NO: currentDatabase[i].IDNO, "TAG NUMBER": currentDatabase[i].TAGNO, DESCRIPTION: currentDatabase[i].DESCRP, FILE_NAME: currentDatabase[i].PDFURL});
    var dp:DataProvider=myGrid.dataProvider; // <- import this class.
    //myGrid.addEventListener(Event:ListEvent.ITEM_CLICK, gridItemClick);
    myGrid.addEventListener(ListEvent.ITEM_CLICK , gridItemClick);
    function gridItemClick (e:ListEvent):void
    var urlR:URLRequest=new URLRequest(e.target.getItemAt(e.rowIndex).FILE_NAME)
        navigateToURL(urlR, "_blank");
    var dp:DataProvider = new DataProvider ();
    var itemTextInput:TextInput = new TextInput();
    itemTextInput.move(10, 10);
    itemTextInput.addEventListener(Event.CHANGE, changeHandler);
    addChild(itemTextInput);
    function changeHandler(event:Event):void {
    var arr:Array = dp.toArray();
    var filteredArr:Array = arr.filter(filterDataProvider);
    myGrid.dataProvider = new DataProvider(filteredArr);
    function filterDataProvider(obj:Object, idx:int, arr:Array):Boolean {
    var txt1:String = itemTextInput.text;
    var txt2:String = obj["TAG NUMBER"].substr(2, txt1.length);
    if (txt1.toLowerCase() == txt2.toLowerCase()) {
    return true;
    return false;
    The following is the XML Code (Database.xml):
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <Database>
    <user id="1" IDNO="01" TAGNO="103-C" DESCRP="Inspection of 103-C" PDFURL="AdditionalJobs/103-C.pdf" />
    <user id="2" IDNO="02" TAGNO="203-C" DESCRP="Inspection of 203-C" PDFURL="AdditionalJobs/203-C.pdf" />
    <user id="3" IDNO="03" TAGNO="303-C" DESCRP="Inspection of 303-C" PDFURL="AdditionalJobs/303-C.pdf" />
    <user id="4" IDNO="04" TAGNO="403-C" DESCRP="Inspection of 403-C" PDFURL="AdditionalJobs/403-C.pdf" />
    </Database>
    Thanks.

  • How can I get the option in ma contact to say iPhone when I'm add someone's number that has a iphone?

    How can I get the option in ma contact to say iPhone when I'm add someone's number that has a iphone?

    about messaging http://support.apple.com/kb/HT3529
    troubleshooting message http://support.apple.com/kb/ts2755

  • How can add captions or title to a picture now that iPhoto doesn't work after updating to iOS 8.

    I Have updated to iOS 8 and iPhoto is dismissed. How can add a caption /title (not in the image) like I was used with iPhoto? Photos has not this feature.
    please, could anyone help me. I'm a real beginner. Thanks,

    I Have updated to iOS 8 and iPhoto is dismissed. How can add a caption /title (not in the image) like I was used with iPhoto? Photos has not this feature.
    please, could anyone help me. I'm a real beginner. Thanks,
    The photos.app does not (yet) have the option to add captions or tags. It is not possible right now. You can however search for the captions you added previously using the search field.  You can also search for album names.  So, as a work-around, put photos that should have the same caption into an album with a name like the caption.
    See:  Migrating from iPhoto for iOS to Photos on iOS 8
    You may want to send feedback to Apple, that captions and tags are essential and need to be added in an update. Use this form:   Apple - iPhoto - Feedback

  • How to add search help for standard field LIKP-TRAID

    Hi friends,
    How to add search help for standard field LIKP-TRAID ,
    refer screen
    Program Name       SAPMV50A  
    Screen Number      2108      
    TrnsIDCode ( LIKP-TRAID ) ..
    I need to add a search help, so that i can retrieve data from Ztable.
    Thanks.
    Abhi

    Hi Abhi,
    Try using any one option:
    Create a Search Help in SE11.
    Now Goto SE11 -> Enter Ztable -> Select that field -> Click Search Help and try to assign the created Search help to that field in your Ztable explicitly
    OR
    Create a Zdata element in SE11.
    In Data Element, under Further Characteristics tab, enter Name  Parameters of Search Help.
    Assign this data element to that field in ur Ztable.
    OR
    Create a Zdomain and maintain a Value Table or Fixed Values for it.
    Assign this domain to that field in ur Ztable.

  • How to add search help to custom infotype listbox??

    Hi All,
    How to add search help to custom infotype listbox??
    Thanks in advance

    Hi Vinay,
    We have search help and list box as 2 different options.
    At a time we can make a field a list box or a search help.List box is restricted and we can pick values from the defined list whereas in search help we can allow more entries and then validate the value entered later.
    Implementing a listbox or search help in infotype is same as that of implementing it in a modulepool .
    for search help..we can create a custom search help or check for existing search help in se11
    then in the screen on infotype field..assign the search help direcly at the screen painter level..
    double click on the field in screen painter -> change mode and then in the space for "search help" enter the search helps name
    for list box..in the screen painter ,make sure the field is selected as list box..then in PAI of screen we do a
    (Process on value-request..field fieldname module module name)..check syntax and other details...
    Using function module vrm_set_value fill the field and populate it as required
    Pls check and revert
    Regards
    Byju

  • How can one search for a filename anywhere on the Mac?

    How can one search for a filename anywhere or everywhere on the Mac?

    You can configure Spotlight so it will also search in system files or you can download and use EasyFind 4.9.3 that doesn't require special configuration.
    Get Spotlight to search system files (and more)
    Enter the search term in the Finder window's search field.
    Click the [+] button in the search bar to add a search option.
    In the first drop down menu choose Other.
    Choose “System Files” from the list that pops up (and check the box to place in drop down menu to avoid this step later,) click on the OK button.
    Now back in the Finder choose Include from the second drop down menu.

  • How can i decleare select-options in module pool table control?

    Hi everybody!!
    Can anyone tell me how can I decleare select-options in module pool table control screen?. I have declared it in a screen with a table control but a dump is triggered due to an error when generating the selection screen.
    Regards...

    My suggestion will be try to use fm
        call function 'FREE_SELECTIONS_DIALOG'
    Please search this forum you can find lot of threads related to this.

  • How can I search the time capsule using spotlight or time machine?

    Every time I try to use spotlight in finder, to find anything on the time capsule, spotlight automatically turns to the mac.
    While using timemachine the connection to the time machine greys out.
    How can I use these options, or different options to search the time capsule?

    I've been looking for the star wars gui, but I only ended up watching scifi movies all night.
    LOL..
    Oh well it is new year.. seems as good a use of time as any.
    Click on the time machine icon in the dock.. that opens finder inside the backup.
    http://www.dummies.com/how-to/content/using-time-machine-to-find-old-files-on-yo ur-mac.html

  • How can I change view options for ALL playlists?

    How can I change view options for ALL playlists? With one single click or trick?
    I have a lot playlists and don't want to change every single one of them separatly.
    Thanks for your help. (I use Windows 7)

    There's no FAST way I know of, which is what I think you mean.
    Only the painful SLOW way of one-by-one.
    You could make a new playlist from the main library after you've set the columns up as you like.
    Go to an existing playlist that doesn't have the columns you want, and select all.
    RIght-click > Add to Playlist and send them to the new playlist.
    That's still one-by-one and only works with static playlists, not smart ones.

  • CLM How to add search-help for extension field(New Company Field) in MA.

    Hi all,
         Based on demand,I need to extend a new field(Company) in Master Agreement.
    But I do not know how to add search-help for this field,just like User Accont page.
    Anyone can help me ?thank you very muck.
    Regards,
    JackyCheng

    Hello Jacky,
    To combine all the answers above and have a topic-based reply please go through the below steps:
    #1. Inactivate the current extension field Company (I see it is actually a String value and this is not what you want to have)
    #2. Go to Setup -> System Setup -> Extension Reference Types
    Check if you already have a Company reference type
    If not, create a new Extension Reference Type for Class Company. Fill in all required information.
    #3. Create a new Extension Attribute
    Select Data Type: Object Reference
    Now you can add the Company type as reference
    Regards,
    Bogdan Toma

  • How to add search help to a report.

    How to add search help to a report.

    Hi
    It can use the event AT SELECTION-SCREEN ON VALUE REQUEST:
    PARAMETERS: P_FIELD LIKE ....
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FIELD.
    * Here it needs to insert the abap code to call the search help,
    * for example it can call fm F4IF_FIELD_VALUE_REQUEST
      CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
           EXPORTING
               TABNAME        = SPACE
                SEARCHHELP = <SEARCH HELP>
                DYNPPROG     = SY-REPID
                DYNPNR          = SY-DYNNR
                DYNPROFIELD = 'P_FIELD'.
    Max

  • How can I search my photos by the White Balance Exif field?

    For some photos I recently imported, the white balance is way off because my camera had it's white balance set to Tungsten. I would like to be able to find ALL of my photos that were taken with a particular camera whitebalance preset.
    I tried to search using the Exif data's White Balance field, but when I use "Tungsten", no images show up, even though I know there are images with that white balance value (thats what it shows in the metadata browser).
    The odd thing is that when I select the White Balance Exif field in the search, the options on it seem to relate to a number, rather than a textual white balance (less than, greater than, etc.) and there are no options that would seem to fit a text entry (includes, for example).
    When I have it set to greater than or equal to and enter 0, I get no images, when I enter 1 I get all images, and when I enter anything else, I get no images.
    So, what am I doing wrong? How can I search on the White Balance Exif field?

    I think Aperture is trying to trick you.
    Probably, and succeeding.
    Meanwhile I exported the images that were neither "Auto White Balance" nor  "Fine weather" l and looked at those with the exiftool in GraphicConverter.
    For all those images GraphicCoverter was showing "Manual", and sadly, no number.
    It seems, we need to run exiftool from the command line, but I need to find the manual again ...
    Einen "Guten Rutsch" ins Neue Jahr
    Léonie

  • HI,How can i set delta option for costumised Generic data source

    Hi Sir/Madam,
          How can i set delta option for costumised Generic data source.
    Regards,
    Vishali.R
    Please search the forum before posting a thread
    Edited by: Pravender on Aug 15, 2011 1:26 PM

    Hi,
    Go to RSO2 transaction and click on change then on the tool bar click on Generic Delta button. In the next popup you can set your delta.
    Regards,
    Durgesh.

Maybe you are looking for

  • Addition of Trailing space resulting in zeros

    I am adding trailing space to MATNR after removing the leading zeros. I am adding hex value of space 0x20, however instead of spaces , zeroes are being added to the end of the field. What could be the reason? Is there any other method of adding trail

  • Difficulties with Dual Monitors

    Hi everyone, I've been trying to edit my xorg.conf to get dual monitors going, but I can't get it going *exactly* the way I want it. I have two monitors, both set up horizontally, side by side. I want the primary to be on the right monitor, and it to

  • No connection between Desktop software and Blackberry

    All of a sudden on Thursday the phone and the desktop software stopped talking.  I've been through all of the suggestions in the 'Troubleshooting the Desktop Software' page and the phone still won't connect.  The desktop manager is simply showing 'Co

  • Just bought a powermac G4

    Just bought a powermac g4 from a guy on craigslist that came with OS X 10.2.3 installed. I would like to install OS X 10.4.9, but don't want to buy it. Can I use the installation DVD that came with the macbook I bought in april? Is this possible or w

  • Installed Win 7 64 Service Pack 1 and ThinkVan update stops working

    I have a T510 i7, Win 7 Prof.   64,   bit and this morning I installed Service Pack 1 from Window Update, and now when I use ThinkVantage to check for Lenovo updates, I press Next....and then  at 9% I get the message ...........an error occured whils