Questions tagged [pins]
122 questions
0
votes
2 answers
Order votes system in rails
I implemented a simple way to let users upvotes pins, But I would like to order the pins by the number of upvotes, here is my upvote system:
app/controllers/pins_controller.rb
def upvote
@pin = Pin.find(params[:id])
@pin.votes.create
…

Jérémy Zaccherini
- 443
- 6
- 19
0
votes
1 answer
How to turn on pins 13 and 12 at the same time? Assembly
How to turn on pins 13 and 12 at the same time?
ldi r18,0x20 ; bit 5 (pin 13) = high
out 5,r18 ; output to port B
ldi r18,0x10 ; bit 4 (pin 12) = high
out 5,r18 ; output to port B
user3691934
0
votes
1 answer
Arduino Master-Slave Pin
Can I change the pins on the communication for a Master-Slave arduino Wire transmission? I want to communicate between 2 arduinos, but on one of them A4&A5 are taken

Jister13
- 149
- 1
- 13
0
votes
1 answer
How to use a specific google map with WP8 Maps control - C#
I want to use this map: http://www.subway.com/storelocator/ with all the subway restaurant positions in my map on Windows Phone 8. I know how to find out the position of the phone and how to zoom in, but I don't know how I can bind in these subway…

user3493797
- 63
- 7
0
votes
0 answers
How to get camcorder record button press event on computer?
I made a desktop application to take video from the camcorder and saves it on my computer. But the only problem is that I want that when I press record button on the camcorder it will automatically start recording the video on my computer and when I…

user3397594
- 1
- 1
0
votes
2 answers
Limit the number of pins on based on radius?
The code beneath found at: /includes/search/functions/ajax.php line: 1489
This is what populates the map on any given page with the pins based on the search fields selected...
Can anybody help me figure out how to limit this search to specific…

Staje Baa
- 29
- 7
0
votes
1 answer
adding a drop pin button
I'm creating a button that will place a pin on users current location. But when ever I press it, instead is is placed in the middle of the global map, around Africa, I believe this is because in the original tutorial where I got this from, they…
0
votes
1 answer
Obtaining clips / pins representation of Protege instances using API within plugin
I have an application that processes the .pins file generated by a Protege (3.5, Frames) project.
I'd like to be able to process the file from within Protege. The trouble I'm having is getting a pins representation of the project (or even an…

Rich
- 141
- 1
- 6
0
votes
2 answers
ios 7 pin viewforannotation not showing up
I upgraded a perfectly working 6.1 app to Xcode 5/ios 7
that uses MKMapKit to show some pins on a mapview.
Now the annotation pins dont show up. Ive made sure
my mapview delegate is correct and viewForAnnotation is being called.
Im also sure its…

Tim
- 647
- 1
- 10
- 21
0
votes
1 answer
Pins order shows up in reverse
I am working on a scaffold pins rails app. On the app there are three models, pins, users and categories. Initially the pins should show up with the earliest pins at the very bottom, and the latest ones at the very top. However, this order seems to…

Matthew W.
- 261
- 1
- 4
- 11
0
votes
2 answers
Bug in UCF file creation?
Creating Microbalze using EDK creates a ucf file in the data folder in the same directory , after creating a simple microblaze on spartan 6 using ethernet , and ddr3 IPS i opened UCF file:
# Spartan-6 SP605 Evaluation Platform
Net…

Omar shaaban
- 257
- 3
- 19
0
votes
0 answers
how can I display alert when user is nearby annotation?
I am trying to display an alert when user is nearby annotation
I have multiple annotation.
Thanks.

RickP
- 1
- 1
0
votes
0 answers
Xcode MapView Set Pins With Button
I am trying to make an application that requires the user to log their current location, then have the pin stay there. So if I had a map view I would have a mapview and then a button on the bottom of the screen, allowing the user to place a pin…

Nicholas Gibson
- 208
- 2
- 13
0
votes
2 answers
Monotouch mapkit mkannotation collection gives errors
New to monotouch aka xamarin ios. Trying to get a robust mapkit working that can take a number of pins. Experimenting with a basic example that I've cobbled together from a variety of sources that I could find.
Getting a sporadic SIGSEGV error. …

fractal
- 1,649
- 17
- 31
0
votes
2 answers
How to draw a line to connect two pins on a map?
I placed two pins on a map:
- (void)viewDidLoad {
[super viewDidLoad];
CLLocationCoordinate2D cord1 = {.latitude = 44.508473, .longitude = 11.375828};
CLLocationCoordinate2D cord2 = {.latitude = 44.508871, .longitude = 11.375854};
…

Matte.Car
- 2,007
- 4
- 23
- 41