The direction tag has no wiki summary.
8
votes
1answer
5k views
iOS Advanced Gestures: Getting Swipe Direction Vector
Looking through the documentation, it seems that the new advanced gestures API doesn't determine the direction of a swipe beyond the basic { left, right, up, down }.
I need the start point of the ...
7
votes
2answers
10k views
MKMapView Route/Directions
I found that the Google Maps API supports Directions through:
var map;
var directionsPanel;
var directions;
function initialize() {
map = new GMap2(document.getElementById("map_canvas"));
...
6
votes
5answers
276 views
Calculating direction based on point offsets
For my tile-based game, I need to calculate direction based on a given point offset (difference between two points). For example, let's say I'm standing at point (10, 4) and I want to move to point ...
4
votes
2answers
67 views
How to stop Javascript from changing my text input direction?
I'm executing the following JavaScript code:
document.write('ל');
document.write(' 0 1 2');
where the first input is text from a right-to-left language (eg Hebrew or Arabic), and the output is as ...
4
votes
1answer
134 views
WPF: how does FlowDirection.RightToLeft change a string?
I have a FormattedText item. I have the flowdirection set to RightToLeft, and I am not sure how it works. It changes my strings really inconsistantly.
I imagined that it would just take a string, and ...
4
votes
1answer
93 views
Standard .NET side enum
I often use enums like
public enum Side { Left, Top, Right, Bottom };
or
public enum Direction { Left, Up, Right, Down };
Every time I describe the enum again. Is there a standard enum of this ...
4
votes
4answers
791 views
How to get cardinal mouse direction from mouse coordinates
is it possible to get the mouse direction (Left, Right, Up, Down) based on mouse last position and current position? I have written the code to calculate the angle between two vectors but I am not ...
4
votes
3answers
2k views
Detecting and acting on keyboard direction keys in Java
G'day all,
I have a console project where it is intended the user presses the keyboard direction keys (non-numeric keypad) to move an avatar. I am having difficulty coding to check for the press of ...
3
votes
1answer
121 views
How to move a div's scrollbar to the left in safari/chrome?
I have a div and the requirement on it is to move the scrollbar from the right side to the left side. I've accomplished this in FF and IE with a direction:rtl; css declaration. Safari and Chrome ...
3
votes
1answer
102 views
Why I need to shake my phone to get the correct “Compass-Data”?
I have a little problem with the "Compass".
I want to show on the screen in which direction I am looking with the camera.
For that I have a CameraView and an Activity in running in landscape mode.
...
3
votes
1answer
372 views
Specifying Silverlight combobox popup direction (dropup)
Is it possible to make the silverlight combo-box "drop up" i.e. display the popup above the combo-box instead of bellow as per default?
3
votes
4answers
2k views
Finding Direction in iPhone like in Compass?
Do any one have idea for finding true direction using iPhone? I want to implement such application in which I need to find direction in which iPhone is pointing and want to make application same as ...
3
votes
2answers
6k views
XNA 2D vector angles - what's the correct way to calculate?
what is in XNA in 2D the standard way vector angles work ?
0 degrees points right, 90 points up, 180 left, 270 down ?
What are the 'standard' implementations of
float VectortoAngle(Vector2 vec)
...
3
votes
4answers
664 views
WPF TextBox - programatically select text while preserving “selection direction”
When editing text the user is able to use the keybord shift button and direction keys to modify the selection - one position stays anchored while the other moves. By pressing left it is possible to ...
2
votes
1answer
21 views
Finding orientation (Clockwise or anticlockwise) of the point with respect to some another point in x-y coordinate system
I have a problem and a solution both. What I want to know is that how to arrive to "that" solution. "That" solution is perfect and working fine for all possible combinations.
This is a vector ...
2
votes
2answers
71 views
Rendering <ul> elements bottom to top
I have an UL list with variable element count. When the elements(of the list) are too wide for list to handle them in single line it breaks the line and starts to render elements(of the list)on lower ...
2
votes
0answers
194 views
Direction Cosine Matrix implementation
I'm trying to implement the Direction Cosine Matrix on Android. I've read some theory about DCM and I finally coded a draft
public void imuUpdate(float dT, float gyro[], float accel[]) {
int ...
2
votes
3answers
399 views
jQuery - Detect scrolldown
I want to run a function when someone scrolls down on an element. Something like this:
$('div').scrollDown(function(){ alert('down') });
$('div').scrollUp(function(){ alert('up') });
But those ...
2
votes
1answer
157 views
How to plot postcodes along with driving route exactly in the given order in a map using google api javascript embed code?
I need to plot a collection of postcodes along with the driving direction. The postcodes will be sorted in the ascending order of some criteria. So the first postcode in the sorted array should be ...
2
votes
0answers
458 views
+100
Google maps API V3 - DirectionsRendererOptions and custom content in InfoWindow
I am trying to implement a map/direction based application using Google maps V3 API. So far I have been able to display the map and show directions for two locations selected.
However I am unable to ...
2
votes
1answer
1k views
Interpret android accelerometer values to get phone's translation along axes in real world
I did search but I could not find an answer; When interpreting android accelerometer values, how can one translate these values into real world phone translation along X/Y/Z axes?
I hope it makes ...
2
votes
1answer
455 views
finding route directions from source to destinaton in android
I am new to android, i have managed to write code that displays the google map, i can able to give source and destination addresses and place push pin over there using reverse Geocode concept...
the ...
2
votes
2answers
380 views
Route Map in iPhone
Does iPhone sdk supports route between two places on Map? I have searched many times. But not able to find any reference. Even on apple iphone development forums, there is no such thing available.
I ...
2
votes
3answers
850 views
Relative Position in PHP between 2 points (Lat/Long)
I have a database of airports with Latitude and Longitude for each point. I want to run a PHP script to find all airports that are nearby a given airport, with their distance and relative direction.
...
2
votes
1answer
252 views
How to get directions on the iPhone or iPad
Hi I would like to in my application display something like: you're destination is 400 ft north west.
I currently use the getDistanceFrom method but that only gives me the feet between 2 locations.
...
2
votes
1answer
175 views
WPF Drag & Drop in RightToLeft Direction
Is there a bug in WPF Drag and Drop when it runs in RTL mode?
It seems it does not update the drop object area which it's FlowDirection set to RTL.
I currently using WPF 3.5 + SP1 and facing this ...
2
votes
2answers
700 views
iPhone Direction Arrow?
I need to create an iPhone simple view that, based on the location of the user in the world, points the person to a never-changing Long/Lat location.
Is it possible to know this from the iPhone API?
...
2
votes
3answers
242 views
Easy Trig - Move an object in a position
I know this is quite easy trigonomety, however I was never introducted to vectors etc, and I'm at a loss understanding how this works.
Given an object at point XY, and a direction N, how do you move ...
2
votes
8answers
697 views
Windows Forms / Winforms C# development - what should I do?
I am trying to get a new contract/job and virtually everything out there (UK) seems to equate .NET with ASP.NET - and that's not me.
Sorry if this seems a little rambling but I really am wondering ...
1
vote
4answers
84 views
detect mouse direction
I am trying this code to detect if the mouse direction is going up or down:
<html>
<head>
</head>
<body>
<div style="width: 500px; height: 500px; background: red;">
...
1
vote
0answers
43 views
google maps javascript api v3: check whether direction/route is crossing a polygon
is there a way to determine, whether a direction/route offered by google maps is going through a self-made polygon on the map? I was not able to find a particular function in the v3 javascript library ...
1
vote
1answer
43 views
How to make the direction of UI in JQueryMobile Apps from right to left
how to display UIs components direction from right to left, do I need to change the css code manually, or is there an easier way to do that from the library itself ?
1
vote
2answers
112 views
How to make a random direction?
I have an image that moves in a random direction when it starts to hit the wall. The image always starts or appear at the upper left corner during execution, you can see that in my code. Now I want ...
1
vote
2answers
62 views
Making a dice in ruby language
Im coding a dice in ruby in which when i rolled it, it would either come up north south east or west.
what im having trouble with is when i roll it how do i tell it to return to me one of these ...
1
vote
1answer
75 views
Padding-Right or Padding-Left problem when direction change between RTL and LTR in a table
I'm developing a project in two languages (RTL and LTR) so when I design my tables some TDs must have right or left padding and I when I changes page direction to other, left padding means right and ...
1
vote
1answer
129 views
How to make Google Maps direction using android?
Does Google Maps API add-on for Android SDK support the routing(directions) functions on Google maps.
If No, is there any good method to be used in implementing a direction for Google maps on android ...
1
vote
4answers
304 views
iPhone compass showing to a specific location
I am new to objective-c so I want to apologize if my question is too rubbish.
I am programming a compass and yet, it is working (thanks to a tutorial).
Actual position (Longitude and Lattitude) is ...
1
vote
2answers
166 views
jquery .show('slow') direction?
Is it possible to change direction of $("selector").show('slow') and hide('slow') effects in jQuery?
I can define directions for other effects such as slide and clip, but there's no option for show ...
1
vote
1answer
468 views
How to keep GridView's sorting state? (Ascending & Descending)
I have a problem that has been bugging me for quite some time and I'm in desperate need of help due to I am a beginner in .NET.
I am using a GridView to display the query results. However, instead of ...
1
vote
1answer
106 views
Direction of Webkit rotation-transform?
is there a way to change the direction of the webkit rotation-transform? Currently it rotates an object to the right, but I would need to rotate it to the left.
edit: the angle it should rotate, i ...
1
vote
3answers
206 views
ListView change order to opposite direction ANDROID
I have a ListView filled with for loop. The data inside ListView is now in direction
6
5
4
3
2
1
and I want it to be in proper direction:
1
2
3
4
5
6
1
vote
3answers
117 views
Help understanding directions for programming assignment?
We were given an assignment in our C programming class to modify a program to make it more object oriented. Part of this was to fix the toString method. The directions were:
Modify the Student ...
1
vote
0answers
492 views
Using Compass to point to actual coordinate location instead of just North
I have seen a few examples of this but am not sure exactly how to implement it, (such as iPhone Compass GPS Direction) in do I need to call calcBearingWithLatitude in (void)startup?
All I am trying ...
1
vote
2answers
980 views
android activity switch direction
when switching between two activities, screen slides between right to left. When I press back key, screen slides from right to left. Is it a way that when I press back key from an activity to change ...
1
vote
2answers
118 views
Setting a different direction for the input tag and its title attribute
I want to set the input tag in my HTML document to rtl and their title attributes to ltr. Is it possible?
1
vote
1answer
268 views
jQuery Animate width to the left and up
I'm trying to animate an image's width and height properties. Currently the image (as expected) animates to the right and down, however I'd like for the animation to occur to the left and upwards. ...
1
vote
2answers
623 views
Using lattitude and longitude of the current location and destination location , how can we get the direction in iphone
I am working in 1 iphone app where we need to show the direction from 1 place to other place
That is from current location in which direction (N or E or W or S or NE or NW or SE or SW ) the ...
1
vote
1answer
429 views
Android direction sensor
is it possible to know which direction the phone is pointing while looking at the camera preview, or do you have to have the phone flat like a compass.
Thanks
1
vote
1answer
677 views
Detect Motion on axis in android
HI,
I am willing to implement a logic in which i need to know about the amount of motion made by phone on x y or z axis,
using accelerometer i can only find acceleration on these axis, even if i try ...
1
vote
1answer
3k views
CGPointMake question for iphone?
I have birds flying within a frame in my game, but I can only get them to fly in two different directions. If there are 2 birds they go in two different directions. If there are 3 birds, 2 of them ...