Track of several points of BBMap

Hello

Since in my app, I am interested in launching BBMaps and the route of several locations on the map.  I see where I can draw 1 point with setLatitude() and setLongitude(), is there a way to do for more than one?

Thanks in advance,

Glenn.

Glenn,

If you pass in a document to the location that contains several points, you can view several points on the map at the same time.  See the following article:

http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800703/How_To _...

Tags: BlackBerry Developers

Similar Questions

  • Divide a line into several points

    I see that I can use SDO_LRS. SPLIT_GEOM_SEGMENT to divide a line into one only point (and get 2 lines resulting).

    However, someone at - it an idea how can I split a line, at several points, in several segments? I need to do for the number of lines, so a function or procedure would be nice as appropriate.

    Thank you

    Published by: ronnie-m on April 22, 2013 04:43

    Sorry for pasting quick and dirty, was a minimum on time and problems with my dev env.

    Perhaps still not the best outline but hoping there more explanaition should be ok.

    Concerning

    Luke

    select l.line_id,                                                                                                                                         -- line line_id
            ROW_NUMBER() OVER (PARTITION BY l.line_id order by l.rowid )                                                                              -- optional sub id, to make submains unique in combination with line_id (guess this will be ordered
            sdo_lrs.CLIP_GEOM_SEGMENT(SDO_LRS.CONVERT_TO_LRS_GEOM(l.geometry ), branch_measure, branch_next_measure, 0.05)              -- actual clipping, needs convert to LRS apparently, start end end branch measure
            from
                   line l,                                                                                                                                            -- rejoin mainly to get the geometry again
                             (
                             select line_id,                                                                                             -- line_id
                                     branch_measure,                                                                                                              -- measure of the branches (from CASE WHEN
                                     LEAD(branch_measure, 1, 0) OVER (PARTITION BY line_id order by branch_measure) branch_next_measure   -- Analytical function LEAD will get the next branch measure form the following ordered records per line_id
                             from
                                  (
                                  select a.line_id,                                                                                                              -- line_id
                                          CASE when                                                                                                              -- CASE (assuming branch will touch only at one point) it will be either the start or the endpoint
                                                      sdo_lrs.find_offset(                                                                    -- of the branch that will TOUCH, we are checking this based on the offset which one is closest
                                                                               SDO_LRS.CONVERT_TO_LRS_GEOM(a.geometry),                                   -- requires convert to LRS geom
                                                                               sdo_lrs.geom_segment_start_pt(b.geometry),                                   -- if it is neccessary to deal with multiple possibilities we might better use a temp table to evalute better
                                                                               0.05                                                                                -- TOLERANCE (all tolereance should be seen with respect to resolution of the data
                                                                               )                                                                   -- IF feasible, let spatial take care of the snapping
                                                      <
                                                      sdo_lrs.find_offset(
                                                                               SDO_LRS.CONVERT_TO_LRS_GEOM(a.geometry),
                                                                               sdo_lrs.geom_segment_end_pt(b.geometry),
                                                                               0.05
                                                                               )
                                            THEN
                                                 sdo_lrs.find_measure(
                                                                           SDO_LRS.CONVERT_TO_LRS_GEOM(a.geometry),
                                                                           sdo_lrs.geom_segment_start_pt(b.geometry),
                                                                           0.05
                                                                           )
                                            ELSE sdo_lrs.find_measure(
                                                                            SDO_LRS.CONVERT_TO_LRS_GEOM(a.geometry),
                                                                            sdo_lrs.geom_segment_end_pt(b.geometry),
                                                                            0.05)
                                              END branch_measure
                                  from line a, line b                                                                                                      -- self join using main and branch that touches
                                       WHERE sdo_relate(b.geometry, a.geometry, 'mask=TOUCH') = 'TRUE'                                     -- Should be replaceable with sdo_join + self join optimsation
                                       AND a.line_type = 'main'
                                       AND b.line_type = 'branch'
                                  union all                                                                                                                        -- union all to get the 0 measure (startpoint) in the subquery as the beginning of the first clipping segment
                                       select line_id, 0 as branch_measure
                                       from line
                                  union all                                                                                                                         -- union all to get the last measure (endpoint) in the subquery as the beginning of the first clipping segment
                                       select line_id,
                                                 sdo_geom.sdo_length(geometry, 0.05) as branch_measure                                                  -- maybe better to use actual get measure form lrs endpoint but is the same if no spaecial measure are used
                                       from line
                                  )
                             ) b
                             where
                             branch_measure < branch_next_measure                                                                                          -- avoid duplicates (2 branches at same location on main (but also the last + 1 segment with last measure and default value 0 from LEAD
                             and
                             l.line_id = b.line_id                                                                                                              -- join on line-id to reuse the geom (or potential other attributes from original lines
                             ;
    
  • Multitouch touch several points of confusion

    I'm currently implementing several points of contact for the first time.  I tested on a Samsung Galaxy Tab 2 7.0; If I device USB debugging, AIR indicates that the device supports 2 points of contact and touch events are supported.

    The app I'm trying is in its infancy, so there's not much going on right now. I have two SimpleButtons that I am putting in place so that the user can press both at the same time, but I can't make it work right. If I hold the first button and then press the second button, the first button is pressed and the second button does not recognize a press (the SimpleButton doesn't change even its origins to the depressed state). If I want the second button, and then press the first button, the first button does nothing, and the second button is released (in my code and visually).

    public function enableButtons (): void {}

    Multitouch.inputMode = MultitouchInputMode.TOUCH_POINT;

    trace ("supportsTouchEvents:" + Multitouch.supportsTouchEvents);

    Button1.addEventListener (TouchEvent.TOUCH_BEGIN, onHoldButton, false, 0, true);

    Button2.addEventListener (TouchEvent.TOUCH_BEGIN, onHoldButton, false, 0, true);

    }

    private void onHoldButton(event:TouchEvent):void {}

    trace ("the" + event.target.name);

    var button: SimpleButton = event.currentTarget as SimpleButton;

    button.removeEventListener (TouchEvent.TOUCH_BEGIN, onHoldButton);

    button.addEventListener (TouchEvent.TOUCH_END, onReleaseButton, false, 0, true);

    button.addEventListener (TouchEvent.TOUCH_OUT, onReleaseButton, false, 0, true);

    }

    private void onReleaseButton(event:TouchEvent):void {}

    trace ("BUTTON of UNLOCK" + event.target.name);

    var button: SimpleButton = event.currentTarget as SimpleButton;

    button.addEventListener (TouchEvent.TOUCH_BEGIN, onHoldButton, false, 0, true);

    button.removeEventListener (TouchEvent.TOUCH_END, onReleaseButton);

    button.removeEventListener (TouchEvent.TOUCH_OUT, onReleaseButton);

    }

    I'm doing something wrong here? Do SimpleButtons support multitouch?

    Can't seem to edit my post, so here's the short of it based on your findings.

    Here's the answer: SimpleButton does NOT support Multitouch.

    You can mark this or your own answer as being correct.

  • Pop-up window with several point

    Hello

    I want to create a pop with several point window when I click on the button.
    I want to insert the value into the table using this pop up window.


    How can I do that.




    Thank you

    Ed

    Hello

    1. create a normal page with multiple elements and process page to insert the value in the table. (Assume that it comes from page 10)
    Edit this page
    Switch to the attribute to display tab.
    Under page template, select popup

    2. now, suppose you have a button on the Page 9 and when you click on this button, page 10 show popup in a pop-up window.
    Edit this button
    Go to the tab URL redirection
    Under target, select URL
    in the target URL text box enter
    JavaScript:popUp2('f?p=&App_ID.:10:&session.',_width_value,height_value);

    Kind regards
    Shijesh

  • How to select several points of movement Tracker?

    I have a trajectory of Tracker with a lot of points. I can slide individually, and I can Shift + click to select more than one. But is there an easy way to select all the points in a given region? Or, best of all, all the points that follow a given time?

    I'm trying to drag all the points that follow a discontinuity in the path, to the difficulty of the discontinuity.

    Don't know what you're trying to do here. These 'points' are just keyframes and can be mass selected in the timeline panel and then you can change the values it by rubbing the digital displays. This will adjust them compared to the base value. If you need anything else, then you must adjust them one at a time, although you can find tools like KeyTweak and others found on AEScripts useful...

    Mylenium

  • Cannot listen to an audio track of several registered through the recording of the cycle... ?

    I'm a new logic/Mac user, so I think I'm missing something obvious.

    I use Logic Pro X I used the cycle recording recording a few songs - but changed the following setting:

    -went to folder, duplication of Audio recordings, create titles selected and Mute under record Cycle

    -J' recorded audio takes 4-5, which was all placed in the new circuits controlled by a single potentiometer

    -When I listen to these songs at the same time, I only heard one of them at a time. If I cut one of the tracks, they all get muted. If I solo, they all get to have.

    Why don't I hear a track at a time? I want to double to the top of my voice recording, but seem not to be able to...?

    Please help, thanks!

    -Mike

    You know a little more sense, to understand what is happening.

    The "short": answer

    • In logic, a track (the way horizontal track that records your regions) and a channel strip (which is responsible for the delivery of audio) are two separate components.
    • You can create several tracks which are all assigned to the same channel strip.
    • All of these buttons Mute , Solo buttons, sliders to Volume and Pan buttons are technically identical, a representation of the coontrols of this single Channel Strip. So pressing a button Mute or Solo allows all other buttons on the pieces.
    • This is the program installation you created with the recordings option overlapping 'create tracks.
    • You must create new tracks (assigned to their own Channel Strip) or reassign these tracks and copy regions.
    • In your case, select records that overlap "create a folder to" and then choose "unpack new tracks" in the Comp Menu.

    You might get the idea that there is some learning/reading to do to be able to use logic, regardless of what you do.

    Hope that helps

    Edgar Rothermich - LogicProGEM.com

    (Author of "Graphically improved manuals")

    http://DingDingMusic.com/manuals/

    "I could receive some form of compensation, financial or otherwise, my recommendation or link."

  • Online zero reference to several points of

    I have several x, y points.  I would like to point there chose 2 and set them to zero as a reference line, then calculate the gap of all other points of this reference line.  LabVIEW has a function that can do this.  Thank you.

    Just do a linear fit for two points and subtract the result from all data points.  See example (quick and dirty and potentially buggy).

  • Data storage of the optical spectrum for several points and recalling a specific

    Hi, I'm working on an installation of measurement of the optical spectrum automated for a summer project, I have been using labview for about a week now and have had bases for stage motor control, but I have problems with the data management...

    I'm looking to store data such as those acquired with an optical spectrum for several XY points Analyzer and recall the optical spectrum for a specified point? Currently, I am looking at writing to the file of measure and reading of the measures such as the options file, but I'm not sure how to name each piece and the data and to recall them correctly. Are there examples where this has been done? any help will be greatly appreciated.

    I use a connect Yokogawa AQ6370 via ethernet, LabVIEW drivers are provided for this, but I can't find the screws provided here is

    Thank you very much

    Asiri

    Not clear? Ask at your

  • Several points of access Cisco Aironet 1131AG and same SSID?

    We have several Cisco Aironet 1131AG, all wired devices on a switch (2560) Cisco L2 which is connected to the L3 switch (3550). We have assigned a VLAN for access point to the L3 switch which acts as a vtp Server (L2 switch is vtp client). All the ap will have a static ip address and all will have the same SSID and no security, and they will use several channels (e.g. 1,6,11).  They will work in 3 floors for a roaming wireless client. We not using any wireless controller.

    So my question is this: how to configure the same APs-all with a different ip address, can we use L3 switch to create the dhcp server to access points VLAN (pool for guests) and the rest of the static ip address for the ap? One of the ap can be WDS and on the same radius server local time with users without Cisco Secure ACS or similar controller or I did not understand this very well :-). I followed the guide http://www.cisco.com/en/US/docs/wireless/access_point/12.3_2_JA/configuration/guide/s32roamg.html for WDS where Abu Cisco ACS part is a problem, so I can use the same ap as a Local authenticator as a guide http://www.cisco.com/en/US/docs/wireless/access_point/12.3_4_JA/configuration/guide/s34local.html#wp1035723.

    Thank you very much...

    Well, just so you know, WDS, and local RADIUS authentication is necessary only if you use authentication on your wireless connection.  You say that you do not plan to use security, so it's not necessary.  However, I highly recommend at least using a simple WPA2-PSK to lock your connection, otherwise you might end up giving free Internet access at best and at worst you could give access to the computers and corporate servers.  If you want to reuse a 802. 1 x or WPA authentication method, then Yes, you can use an AP as RADIUS and to improve WDS Server authenticated to roaming, but this is much more limited than the use of a Cisco ACS.

    As for your other questions, Yes, your APs can all be configured the same except for at least three settings: IP address, hostname, and channel.  Configure your static IP addresses on the interface of the PA BVI1.  Do not place it on the Radio or Ethernet interfaces, because if one of these interfaces goes down, you lose the ability to configure the AP, so it's best to use the BVI1 interface.

    And Yes, configure a DHCP scope for your customers on your L3 switch is good design, or you can also use your DHCP server on a different subnet by using the command of support-ip address on the interface of L3.  I hope this helps!  Let me know if you need help to set all this up.

    Merry Christmas!

    Jeff

  • Warp track missing stabilizer points...

    Stabilize a bunch of clips using warp stabilizer and some bit of reason points are not visible on a random selection of them. Have on, off a bunch of times, without a bit of luck. Everyone experienced before?

    Three things need to be checked if you want to see the WS follow points:

    1. the effect in the effect controls should be highlighted

    2. the track points see the verified on Advanced sub

    3. control of the layer must be on. Click on the Tools tab: display-> control of the view layer, or click the path to mask and of shape toggle visibility button

  • Stop creating several points by a line

    Hello, new to this and for some reason when I go to create a line or shape he keeps creating several end points as a fan for example when using the line, or even multiple of a boxes point etc start... any help?  Can't find any content on it.

    Sounds like your ~ key is stuck.

  • How can I do a summation of a table summarizing several points once, leaving me with another table?

    Hello, I tried to find a way to do the summation of a table, the sum of 19 points at a time, leaving me with another table.  I feel like this has a simple solution, but I'm not sure how.

    Thank you.

    A time loop that contains the subset of the table can do.

    Lynn

  • How to plot several points in real-time on a XY chart in different colors?

    Hello

    I am a beginner of labview.  Here is a screenshot of the program. It provides information in real time to a patient when walking from their foot position, random target (points Exchange with each step) and a reference point (constant).  At present, data from three points are grouped in the same plot on the graph XY.  In the graphics property, when I change the color for field 0, every color change.  I tried to connect the XY graph in table built above, but a cut wire it occurs (connected 2 groups with different content).

    Any help would be great!  Thank you

    Amarcher wrote:

    Thank you.  I tried to change the plots in properties, but it did not work.

    Here's what you can do with very minor changes. It is basically the same as in my previous example.

  • Several points of access WAP300N just stop working

    I have 3 WAP300Ns in my office, all with the same SID.  They will work for several days, then stop working - will not respond to the ping, etc.  I do not think that all fail at the same time, but seems it tends to be in a group.  (I know they are all 3 down when I can't get Wifi)  Turn off and turn on again gets working them again.  All have the latest firmware.  I tried different frequencies but doesn't seem to help. Very frustrating.  Any suggestions?

    Lets see what are the results of a disabling WPS.

  • Tracking of Multiple Point in Blackberry Maps

    Hi all

    I wonder if it is possible to use the webworks geolocation API to plot multiple points on a Blackberry or a Google map. Has anyone tried this yet? Are there references that you could give me to kick off development?

    Thank you!

    Yes it is possible. You ask just the API to update location and add the coordinate on the map. Just be careful with Google maps, as it can break WebWorks events.

Maybe you are looking for

  • I think that Trojan attacted to my pc.

    Ave.exe and avp.exe a Trojan horse? I think that problems on my computer. How do I remove them? My Windows XP computer and protect it with antivirus software. Lately, I found the changes with the settings on my pc and is also slow. Can anyone help?

  • Laptop HP 15-f010wm: 15-f010wm

    I bought the laptop for 15-f010wm for many on Black Friday and I wanted to know if there was a way to install a dedicated graphics card. Also my fan broke and when I sent it in for repair that they fixed it, can I replace the fan separately?

  • How can I synchronize contacts from csv file to samsung omnia

    do not have outlook on my computer and do not spend $100 to get it.  I want to add my 137 contact to my samsung omnia.  How?  mobile device does not allow to import a csv file, nor does my total access.  I got my info in a file and also in hotmail. 

  • Dreamweaver MX 6.0

    Pluggable Dreamweaver MX 6.0 with Mac OS X 10.6.8.Version of her so installs Mac OS X 10.8.5 "Mountain Lion" - what my version of Dreamweaver Sera compatible and if not, what should I do?

  • * HELP! * Illustrator gel, have no past "initializing".

    Hi allIllustrator is freezing on loading, no past "initializing".started about 2 weeks ago. Since then, I did the following according to the forum posts I read and research online1 restart the program and the computer2 removing the drivers for the vi